自动化立体仓库 - WMS系统
#
lsh
2024-01-24 b5fa899c46b54a7f7c447d7d8d7ba0c440415204
src/main/java/com/zy/common/model/LocDto.java
@@ -12,6 +12,7 @@
public class LocDto {
    private String locNo;
    private Long orderDetlId;
    private String matnr;
@@ -30,14 +31,18 @@
    private String orderNo;
    private String origin;
    private Double anfme;
    private Double count;
    private Double weight;
    private boolean lack = false;
    private List<Integer> staNos;
    private Integer staNo;
    private Integer tkType;
    public LocDto() {
    }
@@ -101,4 +106,12 @@
        this.count=anfme;
    }
    public String getTkType$(){
        if (null == this.tkType) return "正常";
        if (this.tkType == 1) {
            return "退库";
        }
        return "正常";
    }
}