| | |
| | | @Schema(description = "报工ID") |
| | | private Long productMainId; |
| | | |
| | | @Schema(description = "报工单号") |
| | | private String reportNo; |
| | | |
| | | @Schema(description = "报工结果类型:0合格,1轻微返工,2严重返工,3报废") |
| | | private Integer reportType; |
| | | |
| | | @Schema(description = "报工结果类型名称") |
| | | private String reportTypeName; |
| | | |
| | | @Schema(description = "审核状态:0待审核,1审核通过,2审核不通过") |
| | | private Integer auditStatus; |
| | | |
| | | @Schema(description = "审核状态名称") |
| | | private String auditStatusName; |
| | | |
| | | @Schema(description = "审核意见") |
| | | private String auditRemark; |
| | |
| | | @Schema(description = "工资") |
| | | private BigDecimal wages; |
| | | |
| | | @Schema(description = "工资修正金额") |
| | | private BigDecimal adjustAmount; |
| | | |
| | | @Schema(description = "工资修正说明") |
| | | private String adjustRemark; |
| | | |
| | | @Schema(description = "工序参数列表") |
| | | private List<ProductionOrderRoutingOperationParam> productionOperationParamList; |
| | | } |