ReceiptBill.java 2.53 KB
package com.huaheng.wms.bean;


import java.math.BigDecimal;

/**
 *
 * @author Enzo Cotter
 * @date 2019/12/15
 */
public class ReceiptBill {
    /** 容器编码 */
    String receiptContainerCode;
    /** 物料code */
    String materialCode;
    /** 收货数量 */
    BigDecimal qty;
    /** 库位编码 */
    String locationCode;
    /** 批次号 */
    String batch;
    /** 项目号 */
    String project;

    String receiptDetailId;

    String companyId;
    /** 货主Code */
    String companyCode;
    /** 重量 */
    String weight;
    String materialName;
    String moCode;

    public String getReceiptContainerCode() {
        return receiptContainerCode;
    }

    public void setReceiptContainerCode(String receiptContainerCode) {
        this.receiptContainerCode = receiptContainerCode;
    }

    public String getMaterialCode() {
        return materialCode;
    }

    public void setMaterialCode(String materialCode) {
        this.materialCode = materialCode;
    }

    public BigDecimal getQty() {
        return qty;
    }

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

    public String getLocationCode() {
        return locationCode;
    }

    public void setLocationCode(String locationCode) {
        this.locationCode = locationCode;
    }

    public String getBatch() {
        return batch;
    }

    public void setBatch(String batch) {
        this.batch = batch;
    }

    public String getProject() {
        return project;
    }

    public void setProject(String project) {
        this.project = project;
    }

    public String getReceiptDetailId() {
        return receiptDetailId;
    }

    public void setReceiptDetailId(String receiptDetailId) {
        this.receiptDetailId = receiptDetailId;
    }

    public String getCompanyCode() {
        return companyCode;
    }

    public void setCompanyCode(String companyCode) {
        this.companyCode = companyCode;
    }

    public String getWeight() {
        return weight;
    }

    public void setWeight(String weight) {
        this.weight = weight;
    }

    public String getMaterialName() {
        return materialName;
    }

    public void setMaterialName(String materialName) {
        this.materialName = materialName;
    }

    public String getCompanyId() {
        return companyId;
    }

    public void setCompanyId(String companyId) {
        this.companyId = companyId;
    }

    public String getMoCode() {
        return moCode;
    }

    public void setMoCode(String moCode) {
        this.moCode = moCode;
    }


}