huminmin
2026-07-15 422a5676c2d96dd37c1be62935a314d70fef79b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package com.ruoyi.production.bean.dto;
 
import com.ruoyi.production.pojo.ProductionOrderRoutingOperationParam;
import com.ruoyi.production.pojo.ProductionProductMain;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.math.BigDecimal;
import java.time.LocalDate;
import java.util.List;
 
@EqualsAndHashCode(callSuper = true)
@Data
@Schema(name = "ProductionProductMainDto", description = "生产报工查询参数")
public class ProductionProductMainDto extends ProductionProductMain {
 
    @Schema(description = "产品工艺路线工序ID")
    private Long productProcessRouteItemId;
 
    @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 workOrderNo;
 
    @Schema(description = "工单状态")
    private String workOrderStatus;
 
    @Schema(description = "昵称")
    private String nickName;
 
    @Schema(description = "数量")
    private BigDecimal quantity;
 
    @Schema(description = "报废数量")
    private BigDecimal scrapQty;
 
    @Schema(description = "产品名称")
    private String productName;
 
    @Schema(description = "产品规格型号")
    private String productModelName;
 
    @Schema(description = "单位")
    private String unit;
 
    @Schema(description = "销售合同号")
    private String salesContractNo;
 
    @Schema(description = "排产日期")
    private LocalDate schedulingDate;
 
    @Schema(description = "排产人员名称")
    private String schedulingUserName;
 
    @Schema(description = "客户名称")
    private String customerName;
 
    @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;
}