maven
2 天以前 4275b293cfc7779a20ccea30b2f773aff0fe06db
main-business/src/main/java/com/ruoyi/business/entity/Production.java
@@ -42,6 +42,12 @@
     */
    @TableField(value = "production_quantity")
    private BigDecimal productionQuantity;
    /**
     * 待排产数量
     */
    @TableField(value = "pending_quantity")
    private BigDecimal pendingQuantity;
    /**
     * 人工成本
     */
@@ -76,10 +82,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;
}