| | |
| | | @Schema(description = "是否质检工序") |
| | | private Boolean isQuality; |
| | | |
| | | @Schema(description = "是否生产") |
| | | private Boolean isProduction; |
| | | |
| | | @Schema(description = "创建人ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long createUser; |
| | |
| | | @Schema(description = "部门ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | @Schema(description = "类型 区分计时和计件,0计时,1计件") |
| | | private Integer type; |
| | | |
| | | @Schema(description = "计划人员ID") |
| | | private Long planPerson; |
| | | |
| | | @Schema(description = "计划执行人员ID") |
| | | private Long executor; |
| | | |
| | | @Schema(description = "工序类型") |
| | | private String processType; |
| | | } |