新火炬后端单体项目初始化代码
houshuai
2025-07-07 c9a3d872c8476060e5877f9fff107ac2ef39e307
src/main/java/org/jeecg/modules/mes/entity/MesMaterialLoading.java
@@ -10,6 +10,7 @@
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.jeecg.common.aspect.annotation.Dict;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.springframework.format.annotation.DateTimeFormat;
@@ -19,7 +20,7 @@
/**
 * @Description: 上料
 * @Author: jeecg-boot
 * @Date:   2025-07-04
 * @Date:   2025-07-07
 * @Version: V1.0
 */
@Data
@@ -55,10 +56,23 @@
    @ApiModelProperty(value = "删除标记")
    @TableLogic
    private Integer delFlag;
   /**申请单ID*/
   @Excel(name = "申请单ID", width = 15)
    @ApiModelProperty(value = "申请单ID")
    private String requestId;
   /**工单ID*/
   @Excel(name = "工单ID", width = 15)
    @Dict(dictTable = "mes_production_work_order", dicCode = "id", dicText = "work_order_code")
    @ApiModelProperty(value = "工单ID")
    private String workOrderId;
   /**设备ID*/
   @Excel(name = "设备ID", width = 15)
    @ApiModelProperty(value = "设备ID")
    private String equipmentId;
   /**工序编码*/
   @Excel(name = "工序编码", width = 15)
    @ApiModelProperty(value = "工序编码")
    private String processCode;
   /**工序名称*/
   @Excel(name = "工序名称", width = 15)
    @ApiModelProperty(value = "工序名称")
    private String processName;
   /**物料编码*/
   @Excel(name = "物料编码", width = 15)
    @ApiModelProperty(value = "物料编码")
@@ -67,16 +81,16 @@
   @Excel(name = "物料名称", width = 15)
    @ApiModelProperty(value = "物料名称")
    private String materialName;
   /**理论拉动数量*/
   @Excel(name = "理论拉动数量", width = 15)
    @ApiModelProperty(value = "理论拉动数量")
    private Double specifiedQuantity;
   /**实际拉动数量*/
   @Excel(name = "实际拉动数量", width = 15)
    @ApiModelProperty(value = "实际拉动数量")
    private Double actualQuantity;
   /**车间剩余数量*/
   @Excel(name = "车间剩余数量", width = 15)
    @ApiModelProperty(value = "车间剩余数量")
   /**批次号*/
   @Excel(name = "批次号", width = 15)
    @ApiModelProperty(value = "批次号")
    private String batchNumber;
   /**数量*/
   @Excel(name = "数量", width = 15)
    @ApiModelProperty(value = "数量")
    private Double quantity;
   /**剩余数量*/
   @Excel(name = "剩余数量", width = 15)
    @ApiModelProperty(value = "剩余数量")
    private Double remainingQuantity;
}