maven
11 小时以前 5eec9b5a9d8bf9e49663d5a51cab7490fef5b204
main-business/src/main/java/com/ruoyi/business/entity/Production.java
@@ -8,7 +8,7 @@
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
import java.time.LocalDate;
/**
 * 生产明细表 实体类
@@ -28,25 +28,20 @@
    @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;
    /**
     * 人工成本
     */
@@ -78,8 +73,25 @@
    @TableField(value = "producer")
    private String producer;
    /**
     * 生产人ID
     */
    @TableField(value = "producer_id")
    private Long producerId;
    /**
     * 生产日期
     */
    @TableField(value = "production_date")
    private Date productionDate;
    private LocalDate productionDate;
    /**
     * 煤料类型(1-成品 2-原料)
     */
    @TableField(value = "type")
    private Integer type;
    /**
     * 状态(1-待排产 2-排产中 3-已排产)
     */
    @TableField(value = "status")
    private Integer status;
}