自动化立体仓库 - WMS系统
lty
2025-06-13 9d38f2354b3a7267a2486d937bb7d256fcb949c1
src/main/java/com/zy/asrs/entity/WrkDetl.java
@@ -269,6 +269,13 @@
    @ApiModelProperty(value= "备注")
    private String memo;
    @ApiModelProperty(value= "生产日期")
    @TableField("proddate")
    private Date proddate;
    @ApiModelProperty(value= "到期日期")
    @TableField("deadline")
    private Date deadline;
    public String getIoTime$(){
        if (Cools.isEmpty(this.ioTime)){
            return "";
@@ -287,7 +294,18 @@
                return String.valueOf(this.beBatch);
        }
    }
    public String getProddate$(){
        if (Cools.isEmpty(this.proddate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd").format(this.proddate);
    }
    public String getDeadline$(){
        if (Cools.isEmpty(this.deadline)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd").format(this.deadline);
    }
    public String getSource$(){
        if (null == this.source){ return null; }
        switch (this.source){