| | |
| | | |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @Data |
| | | @Schema(name = "ProductionProductMainDto", description = "生产报工查询对象") |
| | | @Schema(name = "ProductionProductMainDto", description = "生产报工查询参数") |
| | | public class ProductionProductMainDto extends ProductionProductMain { |
| | | |
| | | @Schema(description = "产品工艺路线明细ID") |
| | | @Schema(description = "产品工艺路线工序ID") |
| | | private Long productProcessRouteItemId; |
| | | |
| | | @Schema(description = "生产报工表id") |
| | | @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 = "租户ID") |
| | | private Long tenantId; |
| | |
| | | @Schema(description = "产品名称") |
| | | private String productName; |
| | | |
| | | @Schema(description = "产品型号名称") |
| | | @Schema(description = "产品规格型号") |
| | | private String productModelName; |
| | | |
| | | @Schema(description = "单位") |
| | | private String unit; |
| | | |
| | | @Schema(description = "销售合同编号") |
| | | @Schema(description = "销售合同号") |
| | | private String salesContractNo; |
| | | |
| | | @Schema(description = "排产日期") |
| | |
| | | @Schema(description = "工序") |
| | | private String process; |
| | | |
| | | @Schema(description = "工资定额") |
| | | private BigDecimal workHours; |
| | | |
| | | @Schema(description = "工资") |
| | | private BigDecimal wages; |
| | | |
| | | @Schema(description = "原工资") |
| | | private BigDecimal originalWages; |
| | | |
| | | @Schema(description = "补修理工时") |
| | | private BigDecimal repairWorkHour; |
| | | |
| | | @Schema(description = "工资修正金额") |
| | | private BigDecimal adjustAmount; |
| | | |
| | | @Schema(description = "工资修正说明") |
| | | private String adjustRemark; |
| | | |
| | | @Schema(description = "工序参数列表") |
| | | private List<ProductionOrderRoutingOperationParam> productionOperationParamList; |
| | | } |