maven
2 天以前 4275b293cfc7779a20ccea30b2f773aff0fe06db
main-business/src/main/java/com/ruoyi/business/entity/Production.java
@@ -28,25 +28,26 @@
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /**
     * 生产主表ID
     */
    @TableField(value = "production_master_id")
    private Long productionMasterId;
    /**
     * 煤种ID
     */
    @TableField(value = "coal_id")
    private Long coalId;
    /**
     * 煤种
     */
    @TableField(value = "coal")
    private String coal;
    /**
     * 热值
     */
    @TableField(value = "calorific_value")
    private Integer calorificValue;
    /**
     * 生产数量
     */
    @TableField(value = "production_quantity")
    private Integer productionQuantity;
    private BigDecimal productionQuantity;
    /**
     * 待排产数量
     */
    @TableField(value = "pending_quantity")
    private BigDecimal pendingQuantity;
    /**
     * 人工成本
     */
@@ -78,8 +79,25 @@
    @TableField(value = "producer")
    private String producer;
    /**
     * 生产人ID
     */
    @TableField(value = "producer_id")
    private Long producerId;
    /**
     * 生产日期
     */
    @TableField(value = "production_date")
    private LocalDate productionDate;
    /**
     * 煤料类型(1-成品 2-原料)
     */
    @TableField(value = "type")
    private Integer type;
    /**
     * 状态(1-待排产 2-排产中 3-已排产)
     */
    @TableField(value = "status")
    private Integer status;
}