自动化立体仓库 - WMS系统
#
lsh
2024-04-14 b141c90208b6a82504680d35eacdaecff1cb7e40
src/main/java/com/zy/asrs/entity/ManLocDetl.java
@@ -61,11 +61,11 @@
    private Double anfme;
    /**
     * 商品编号
     * 规格
     */
    @ApiModelProperty(value= "商品编号")
    @ApiModelProperty(value= "规格")
    @TableId(value = "matnr", type = IdType.INPUT)
    @ExcelProperty(value = "商品编号")
    @ExcelProperty(value = "规格")
    private String matnr;
    /**
@@ -193,8 +193,8 @@
     * 修改时间
     */
    @ApiModelProperty(value= "修改时间")
    @TableField("update_time")
    private Date updateTime;
    @TableField("modi_time")
    private Date modiTime;
    /**
     * 备注
@@ -204,7 +204,7 @@
    public ManLocDetl() {}
    public ManLocDetl(Long hostId, String locNo,Long nodeId,String zpallet,Double anfme,String matnr,String maktx,String name,String specs,String model,String batch,String unit,String barcode,Long docId,String docNum,String custName,Integer itemNum,Integer count,Double weight,Integer status,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) {
    public ManLocDetl(Long hostId, String locNo,Long nodeId,String zpallet,Double anfme,String matnr,String maktx,String name,String specs,String model,String batch,String unit,String barcode,Long docId,String docNum,String custName,Integer itemNum,Integer count,Double weight,Integer status,Long createBy,Date createTime,Long updateBy,Date modiTime,String memo) {
        this.hostId = hostId;
        this.nodeId = nodeId;
        this.zpallet = zpallet;
@@ -226,7 +226,7 @@
        this.createBy = createBy;
        this.createTime = createTime;
        this.updateBy = updateBy;
        this.updateTime = updateTime;
        this.modiTime = modiTime;
        this.memo = memo;
    }
@@ -235,7 +235,7 @@
//            null,    // 所属货位
//            null,    // 托盘码
//            null,    // 库存余量[非空]
//            null,    // 商品编号[非空]
//            null,    // 规格[非空]
//            null,    // 商品名称
//            null,    // 名称
//            null,    // 规格
@@ -316,10 +316,11 @@
        return null;
    }
    public String getUpdateTime$(){
        if (Cools.isEmpty(this.updateTime)){
    public String getModiTime$(){
        if (Cools.isEmpty(this.modiTime)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.updateTime);
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.modiTime);
    }
}