src/main/java/com/zy/common/model/LocDto.java
@@ -31,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() { } @@ -102,4 +106,12 @@ this.count=anfme; } public String getTkType$(){ if (null == this.tkType) return "正常"; if (this.tkType == 1) { return "退库"; } return "正常"; } }