自动化立体仓库 - WMS系统
pang.jiabao
6 天以前 e93f13a9296affa2cd7a5b7c667aa5e5a4f5fde6
src/main/java/com/zy/asrs/entity/Mat.java
@@ -9,11 +9,11 @@
import com.core.common.SpringUtils;
import com.zy.asrs.enums.ContainerType;
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;
import lombok.Data;
import org.springframework.beans.BeanUtils;
import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
@@ -232,7 +232,7 @@
    /**
     * 是否批次 1: 是  0: 否
     */
    @ApiModelProperty(value = "是否批次 1: 是  0: 否  ")
    @ApiModelProperty(value = "高低频 0: 高 1: 低  ")
    @TableField("be_batch")
    private Integer beBatch;
@@ -322,12 +322,14 @@
     * 库存预警数量上限
     */
    @TableField("store_max")
    @ExcelProperty(value = "库存预警数量上限")
    private Double storeMax;
    /**
     * 库存预警数量下限
     */
    @TableField("store_min")
    @ExcelProperty(value = "库存预警数量下限")
    private Double storeMin;
    /**
@@ -448,9 +450,9 @@
        }
        switch (this.beBatch) {
            case 1:
                return "是";
                return "低频";
            case 0:
                return "否";
                return "高频";
            default:
                return String.valueOf(this.beBatch);
        }
@@ -547,7 +549,7 @@
    }
    public void sync(Object source) {
        Synchro.Copy(source, this);
        BeanUtils.copyProperties(source, this);
    }
}