自动化立体仓库 - WMS系统
zyx
2024-03-29 16a3dbbf28606a90dd6dadeffe843f53f72d3955
src/main/java/com/zy/common/model/DetlDto.java
@@ -30,6 +30,9 @@
    //销售订单行号
    private String isoseq;
    // 库位类型: 1、代包装成品,2、原材料,3、箱壳
    private Integer locType;
    public DetlDto() {
    }
@@ -49,12 +52,22 @@
        this.anfme = anfme;
    }
    public DetlDto(String matnr, String batch, Double anfme, String csocode, String isoseq) {
    public DetlDto(String matnr, String batch, Double anfme, String csocode, String isoseq, String containerCode) {
        this.matnr = matnr;
        this.batch = batch;
        this.anfme = anfme;
        this.csocode = csocode;
        this.isoseq = isoseq;
        this.containerCode = containerCode;
    }
    public DetlDto(String matnr, String batch, Double anfme, String csocode, String isoseq, String containerCode, Integer locType) {
        this.matnr = matnr;
        this.batch = batch;
        this.anfme = anfme;
        this.csocode = csocode;
        this.isoseq = isoseq;
        this.containerCode = containerCode;
        this.locType = locType;
    }
    public DetlDto(String orderNo, String matnr, String batch, Double anfme, String csocode, String isoseq) {
@@ -112,4 +125,9 @@
        return null;
    }
    public static void main(String[] args) {
        boolean a = Cools.eq("a", null);
        System.out.println(a);
    }
}