#
mrzhssss
2022-04-26 d17c089f1d7ff3be848b05161917346e7f664a1d
src/main/java/zy/cloud/wms/manager/entity/Pickout.java
@@ -97,6 +97,22 @@
    @TableField("order_nos")
    private String orderNos;
    @TableField("wave_no")
    private String waveNo;
    @TableField("print_times")
    private Integer printTimes;
    @TableField("pick_staff")
    private Long pickStaff;
    @TableField("pick_start")
    private Date pickStart;
    @TableField("pick_end")
    private Date pickEnd;
    public Pickout() {}
@@ -115,14 +131,15 @@
    public String getWrkSts$(){
        if (this.wrkSts == 1) {
            return "未拣货";
            return "未打印";
        }
        if (this.wrkSts == 2) {
            return "未打印";
            return "拣货中";
        }
        if (this.wrkSts == 3) {
            return "已完成";
        }
        return "";
    }
    public Long getId() {
@@ -184,6 +201,7 @@
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.createTime);
    }
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
@@ -227,5 +245,17 @@
        this.memo = memo;
    }
    public String getPickStart$() {
        if (Cools.isEmpty(this.pickStart)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.pickStart);
    }
    public String getPickEnd$() {
        if (Cools.isEmpty(this.pickEnd)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.pickEnd);
    }
}