新火炬后端单体项目初始化代码
cuilei
2 天以前 32863d68c09f45cd501fd3db59c7f13e57130fe4
src/main/java/org/jeecg/modules/mes/entity/MesProductionWorkOrder.java
@@ -101,21 +101,25 @@
    @Excel(name = "是否通过齐套性检查", width = 15, dicCode = "yn")
    @Dict(dicCode = "yn")
    @ApiModelProperty(value = "是否通过齐套性检查")
    private String completenessCheckFlag = CommonConstant.DEFAULT_0;
    private String completenessCheckFlag;
    /**是否通过设备点检*/
    @Excel(name = "是否通过设备点检", width = 15, dicCode = "yn")
    @Dict(dicCode = "yn")
    @ApiModelProperty(value = "是否通过设备点检")
    private String equipmentInspectionFlag = CommonConstant.DEFAULT_0;
    private String equipmentInspectionFlag;
    /**是否通过工艺点检*/
    @Excel(name = "是否通过工艺点检", width = 15, dicCode = "yn")
    @Dict(dicCode = "yn")
    @ApiModelProperty(value = "是否通过工艺点检")
    private String processInspectionFlag = CommonConstant.DEFAULT_0;
    private String processInspectionFlag;
   /**实际报工数量*/
   @Excel(name = "实际报工数量", width = 15)
    @ApiModelProperty(value = "实际报工数量")
    private BigDecimal actualQuantity;
    /**已生产托数(当前班次已生产的托数量,每次报工时更新)*/
    @Excel(name = "已生产托数", width = 15)
    @ApiModelProperty(value = "已生产托数")
    private Integer finishedPallets;
   /**发布人*/
   @Excel(name = "发布人", width = 15)
    @ApiModelProperty(value = "发布人")
@@ -149,6 +153,10 @@
    /**产线名称*/
    @TableField(exist = false)
    private String factoryName;
    /**产线类型*/
    @TableField(exist = false)
    @Dict(dicCode = "production_type")
    private String productionType;
    /**班组名称*/
    @TableField(exist = false)
    private String groupName;
@@ -158,4 +166,12 @@
    /**班次名称*/
    @TableField(exist = false)
    private String shiftName;
    /**生产工单*/
    @TableField(exist = false)
    private String text;
    /**生产工单id*/
    @TableField(exist = false)
    private String value;
}