mrzhssss
2022-04-11 d2adac4e369165ec523c23e7ffd19fc5775d43b5
src/main/java/zy/cloud/wms/manager/entity/Pickout.java
@@ -92,6 +92,27 @@
    @ApiModelProperty(value= "")
    private String memo;
    @TableField("order_qty")
    private Integer orderQty;
    @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() {}
@@ -110,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() {
@@ -179,6 +201,7 @@
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.createTime);
    }
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
@@ -222,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);
    }
}