maven
11 小时以前 5eec9b5a9d8bf9e49663d5a51cab7490fef5b204
main-business/src/main/java/com/ruoyi/business/entity/Production.java
@@ -38,15 +38,10 @@
    @TableField(value = "coal_id")
    private Long coalId;
    /**
     * 煤种
     */
    @TableField(value = "coal")
    private String coal;
    /**
     * 生产数量
     */
    @TableField(value = "production_quantity")
    private Integer productionQuantity;
    private BigDecimal productionQuantity;
    /**
     * 人工成本
     */
@@ -81,10 +76,22 @@
     * 生产人ID
     */
    @TableField(value = "producer_id")
    private String producerId;
    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;
}