| | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | @Schema(description = "计划完成时间。选填;按生产计划生成订单时,系统会优先自动带出交期。") |
| | | @Schema(description = "计划完成时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate planCompleteTime; |
| | | |
| | | @Schema(description = "状态(1.待开始、2.进行中、3.已完成、4.已取消)") |
| | | @Schema(description = "状态(1.待开始 2.进行中 3.已完成 4.已取消 5.已结束)") |
| | | private Integer status; |
| | | |
| | | @Schema(description = "强度") |
| | | private String strength; |
| | | @Schema(description = "是否结束)") |
| | | @TableField("is_end_order") |
| | | private Boolean endOrder; |
| | | } |