新火炬后端单体项目初始化代码
cuijian
2025-06-28 b231e345300e34c9c918cbd7e2db44d334eb4937
src/main/java/org/jeecg/modules/base/entity/LineSideWarehouse.java
@@ -10,6 +10,7 @@
import com.baomidou.mybatisplus.annotation.TableLogic;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.jeecg.common.constant.CommonConstant;
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.jeecg.common.aspect.annotation.Dict;
@@ -56,7 +57,7 @@
   @Excel(name = "删除标记", width = 15)
    @ApiModelProperty(value = "删除标记")
    @TableLogic
    private Integer delFlag;
    private Integer delFlag = CommonConstant.DEL_FLAG_0;
   /**仓库编码*/
   @Excel(name = "仓库编码", width = 15)
    @ApiModelProperty(value = "仓库编码")
@@ -65,8 +66,13 @@
   @Excel(name = "仓库名称", width = 15)
    @ApiModelProperty(value = "仓库名称")
    private String warehouseName;
    /**仓库状态*/
    @Excel(name = "仓库状态", width = 15)
    @ApiModelProperty(value = "仓库状态")
    private String warehouseStatus;
   /**工厂/产线ID*/
   @Excel(name = "工厂/产线ID", width = 15)
    @ApiModelProperty(value = "工厂/产线ID")
    @Dict(dictTable = "base_factory", dicCode = "id", dicText = "factory_name")
    private String factoryId;
}