InboundItem.java 7.62 KB
package cn.csbr.app.model;

import java.util.Date;

/**
 * 入库操作单
 * 入库单信息来自服务器
 * 程序上通过扫码信息来匹配
 */
public class InboundItem {
    private String guid;
    private Integer rowNo;
    private String srcOrderCode;
    private Date srcInboundDate;
    private String traceCode;
    private String checkType = "1";
    private String confirmFlag = "1";
    private String supplierGuid;
    private String supplierName;
    private Goods goods;
    private String bacthCode;
    private Integer qty;
    private String allocation;
    private String allocationGuid;
    private Byte ifInCabinet;
    private Integer scanQty;
    private Byte ifScand;
    private String barcode;
    private String goodsguid;
    private String goodscode;
    private String goodsname;
    private String goodsspec;
    private String unit;
    private String registkey;
    private String manufacturer;
    private Date productiondate;
    private Date expiredate;
    private String rfiduid;
    private String model;
    private String Producer;
    public String getModel() {
        return model;
    }

    public void setModel(String model) {
        this.model = model;
    }
    public String getProducer() {
        return Producer;
    }
    public void setProducer(String producer) {
        Producer = producer;
    }
    private Date use_time;//操作日期
    public Date getUse_time() {
        return use_time;
    }

    public void setUse_time(Date use_time) {
        this.use_time = use_time;
    }
    public String getOperaterId() {
        return operaterId;
    }

    public void setOperaterId(String operaterId) {
        this.operaterId = operaterId;
    }

    public String getOperaterName() {
        return operaterName;
    }

    public void setOperaterName(String operaterName) {
        this.operaterName = operaterName;
    }

    private String operaterId;
    private String operaterName;

    public String getRfiduid() {
        return rfiduid;
    }

    public void setRfiduid(String rfiduid) {
        this.rfiduid = rfiduid;
    }

    public Date getProductiondate() {
        return productiondate;
    }

    public void setProductiondate(Date productiondate) {
        this.productiondate = productiondate;
    }

    public Date getExpiredate() {
        return expiredate;
    }

    public void setExpiredate(Date expiredate) {
        this.expiredate = expiredate;
    }

    public String getConfirmFlag() {
        return confirmFlag;
    }

    public void setConfirmFlag(String confirmFlag) {
        this.confirmFlag = confirmFlag;
    }

    public String getCheckType() {
        return checkType;
    }

    public void setCheckType(String checkType) {
        this.checkType = checkType;
    }

    public Integer getRowNo() {
        return rowNo;
    }

    public void setRowNo(Integer rowNo) {
        this.rowNo = rowNo;
    }

    public String getRegistkey() {
        return registkey;
    }

    public void setRegistkey(String registkey) {
        this.registkey = registkey;
    }

    public String getManufacturer() {
        return manufacturer;
    }

    public void setManufacturer(String manufacturer) {
        this.manufacturer = manufacturer;
    }

    public String getGoodsguid() {
        return goodsguid;
    }

    public void setGoodsguid(String goodsguid) {
        this.goodsguid = goodsguid;
    }

    public String getGoodscode() {
        return goodscode;
    }

    public void setGoodscode(String goodscode) {
        this.goodscode = goodscode;
    }

    public String getGoodsname() {
        return goodsname;
    }

    public void setGoodsname(String goodsname) {
        this.goodsname = goodsname;
    }

    public String getGoodsspec() {
        return goodsspec;
    }

    public void setGoodsspec(String goodsspec) {
        this.goodsspec = goodsspec;
    }

    public String getUnit() {
        return unit;
    }

    public void setUnit(String unit) {
        this.unit = unit;
    }

    public Byte getIfInCabinet() {
        return ifInCabinet;
    }

    public void setIfInCabinet(Byte ifInCabinet) {
        this.ifInCabinet = ifInCabinet;
    }

    public Integer getScanQty() {
        return scanQty;
    }

    public void setScanQty(Integer scanQty) {
        this.scanQty = scanQty;
    }

    public Byte getIfScand() {
        return ifScand;
    }

    public void setIfScand(Byte ifScand) {
        this.ifScand = ifScand;
    }

    public String getGuid() {
        return guid;
    }

    public void setGuid(String guid) {
        this.guid = guid;
    }

    public String getSrcOrderCode() {
        return srcOrderCode;
    }

    public void setSrcOrderCode(String srcOrderCode) {
        this.srcOrderCode = srcOrderCode;
    }

    public Date getSrcInboundDate() {
        return srcInboundDate;
    }

    public void setSrcInboundDate(Date srcInboundDate) {
        this.srcInboundDate = srcInboundDate;
    }

    public String getTraceCode() {
        return traceCode;
    }

    public void setTraceCode(String traceCode) {
        this.traceCode = traceCode;
    }

    public String getSupplierGuid() {
        return supplierGuid;
    }

    public void setSupplierGuid(String supplierGuid) {
        this.supplierGuid = supplierGuid;
    }

    public String getSupplierName() {
        return supplierName;
    }

    public void setSupplierName(String supplierName) {
        this.supplierName = supplierName;
    }

    public Goods getGoods() {
        return goods;
    }

    public void setGoods(Goods goods) {
        this.goods = goods;
    }

    public String getBacthCode() {
        return bacthCode;
    }

    public void setBacthCode(String bacthCode) {
        this.bacthCode = bacthCode;
    }

    public Integer getQty() {
        return qty;
    }

    public void setQty(Integer qty) {
        this.qty = qty;
    }

    public String getAllocation() {
        return allocation;
    }

    public void setAllocation(String allocation) {
        this.allocation = allocation;
    }

    public String getBarcode() {
        return barcode;
    }

    public void setBarcode(String barcode) {
        this.barcode = barcode;
    }

    public String getAllocationGuid() {
        return allocationGuid;
    }

    public void setAllocationGuid(String allocationGuid) {
        this.allocationGuid = allocationGuid;
    }


    @Override
    public String toString() {
        return "InboundItem{" +
                "guid='" + guid + '\'' +
                ", rowNo=" + rowNo +
                ", srcOrderCode='" + srcOrderCode + '\'' +
                ", srcInboundDate=" + srcInboundDate +
                ", traceCode='" + traceCode + '\'' +
                ", checkType='" + checkType + '\'' +
                ", confirmFlag='" + confirmFlag + '\'' +
                ", supplierGuid='" + supplierGuid + '\'' +
                ", supplierName='" + supplierName + '\'' +
                ", goods=" + goods +
                ", bacthCode='" + bacthCode + '\'' +
                ", qty=" + qty +
                ", allocation='" + allocation + '\'' +
                ", allocationGuid='" + allocationGuid + '\'' +
                ", ifInCabinet=" + ifInCabinet +
                ", scanQty=" + scanQty +
                ", ifScand=" + ifScand +
                ", barcode='" + barcode + '\'' +
                ", goodsguid='" + goodsguid + '\'' +
                ", goodscode='" + goodscode + '\'' +
                ", goodsname='" + goodsname + '\'' +
                ", goodsspec='" + goodsspec + '\'' +
                ", unit='" + unit + '\'' +
                ", registkey='" + registkey + '\'' +
                ", manufacturer='" + manufacturer + '\'' +
                '}';
    }
}