自动化立体仓库 - WMS系统
#
whycq
2024-06-13 84cfd49774d4aa0e475b319a70a411c4cc078694
src/main/java/com/zy/common/model/DetlDto.java
@@ -30,6 +30,12 @@
    //销售订单行号
    private String isoseq;
    // 库位类型: 1、代包装成品,2、原材料,3、箱壳
    private Integer locType;
    // 工序状态 1:待加工,2:已加工,3:无需加工
    private Integer processSts;
    public DetlDto() {
    }
@@ -49,12 +55,33 @@
        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 matnr, String batch, Double anfme, String csocode, String isoseq, String containerCode, Integer locType, Integer processSts) {
        this.matnr = matnr;
        this.batch = batch;
        this.anfme = anfme;
        this.csocode = csocode;
        this.isoseq = isoseq;
        this.containerCode = containerCode;
        this.locType = locType;
        this.processSts = processSts;
    }
    public DetlDto(String orderNo, String matnr, String batch, Double anfme, String csocode, String isoseq) {
@@ -112,4 +139,9 @@
        return null;
    }
    public static void main(String[] args) {
        boolean a = Cools.eq("a", null);
        System.out.println(a);
    }
}