All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mycomm.IProtocol.beans.BarCodeBean Maven / Gradle / Ivy

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.mycomm.IProtocol.beans;

/**
 *
 * @author jw362j
 */
public class BarCodeBean {
    private String barCodeFilePath;
    private String barcodeValue;
    private long expireTime;

    public BarCodeBean() {
    }

    public BarCodeBean(String barCodeFilePath, String barcodeValue, long expireTime) {
        this.barCodeFilePath = barCodeFilePath;
        this.barcodeValue = barcodeValue;
        this.expireTime = expireTime;
    }

    
    public String getBarCodeFilePath() {
        return barCodeFilePath;
    }

    public void setBarCodeFilePath(String barCodeFilePath) {
        this.barCodeFilePath = barCodeFilePath;
    }

    public String getBarcodeValue() {
        return barcodeValue;
    }

    public void setBarcodeValue(String barcodeValue) {
        this.barcodeValue = barcodeValue;
    }

    public long getExpireTime() {
        return expireTime;
    }

    public void setExpireTime(long expireTime) {
        this.expireTime = expireTime;
    }
    
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy