XiaoRuby
2023-09-01 0a44f2ea664d893503246a232646f2593a738460
production-server/src/main/java/com/yuanchu/mom/pojo/ManualTechnology.java
@@ -47,10 +47,8 @@
     **/
    private String deviceGroup;
    /**
     * 关联 设备id
     **/
    private Integer deviceId;
    @ApiModelProperty(value = "生产定额(个/天)")
    private Integer productionQuota;
    /**
     * 关联 生产订单id
@@ -58,6 +56,7 @@
    private Integer manufactureOrderId;
    @ApiModelProperty(value = "逻辑删除 正常>=1,删除<=0", hidden = true)
    @TableLogic(value = "1", delval = "0")
    private Integer state;
    @TableField(fill = FieldFill.INSERT)
@@ -69,24 +68,5 @@
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date updateTime;
    /**
     * 开始日期(计划)
     */
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date startTime;
    /**
     * 结束日期(计划)
     */
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    private Date endTime;
    /**
     * 周期
     **/
    private Integer period;
}