zss
2023-09-25 5d24aead2d1a45452942ddfc300fe6a232301a99
production-server/src/main/java/com/yuanchu/mom/pojo/ManufactureOrder.java
@@ -72,6 +72,8 @@
     **/
    private Integer number;
    @ApiModelProperty(value = "已排产数量")
    private Integer scheduledProduction;
    /**
     * 下单日期
     **/
@@ -87,16 +89,12 @@
    private Date deltime;
    /**
     * 状态0:待排产;1:已排产
     **/
    private Integer type;
    /**
     * 质量追溯号
     **/
    private String qualityTraceability;
    @ApiModelProperty(value = "逻辑删除 正常>=1,删除<=0", hidden = true)
    @TableLogic(value = "1", delval = "0")
    private Integer state;
    @TableField(fill = FieldFill.INSERT)
@@ -108,5 +106,15 @@
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date updateTime;
    /**
     * 下达状态0:待下达;1:已下达
     **/
    private Integer goState;
    /**
     * 下单人
     **/
    private String downman;
}