自动化立体仓库 - WMS系统
dubin
2 天以前 322e78c971769c8417810ac0dc4cdad065d40d3f
src/main/java/com/zy/asrs/entity/Mat.java
@@ -8,6 +8,7 @@
import com.core.common.Cools;
import com.core.common.SpringUtils;
import com.zy.asrs.service.TagService;
import com.zy.common.utils.Synchro;
import com.zy.system.entity.User;
import com.zy.system.service.UserService;
import io.swagger.annotations.ApiModelProperty;
@@ -190,6 +191,7 @@
     */
    @ApiModelProperty(value= "长度")
    @ExcelProperty(value = "长度")
    @TableField("man_length")
    private Double length;
    /**
@@ -305,6 +307,24 @@
    @ApiModelProperty(value= "备注")
    @ExcelProperty(value = "备注")
    private String memo;
    /**
     * 库存预警数量上限
     */
    @TableField("store_max")
    private Double storeMax;
    /**
     * 库存预警数量下限
     */
    @TableField("store_min")
    private Double storeMin;
    /**
     * 库龄预警上限
     */
    @TableField("store_max_date")
    private Integer storeMaxDate;
    public Mat() {}
@@ -491,5 +511,8 @@
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.updateTime);
    }
    public void sync(Object source) {
        Synchro.Copy(source, this);
    }
}