gongchunyi
2026-04-28 e992aa74b2a75653f007ab12a83cfc28aee7d7a6
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
package com.ruoyi.production.dto;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class ProductionProductMainSummaryExportDto {
 
    @Excel(name = "工序", sort = 1)
    private String process;
 
    @Excel(name = "工单号", sort = 2)
    private String workOrderNo;
 
    @Excel(name = "销售合同号", sort = 3)
    private String salesContractNo;
 
    @Excel(name = "生产订单号", sort = 4)
    private String productOrderNpsNo;
 
    @Excel(name = "产品名称", sort = 5)
    private String productName;
 
    @Excel(name = "产品规格型号", sort = 6)
    private String productModelName;
 
    @Excel(name = "单位", sort = 7)
    private String unit;
 
    @Excel(name = "总工时", sort = 8)
    private BigDecimal projectTotalHours;
 
    @Excel(name = "工序标准工时(小时)", sort = 9)
    private BigDecimal processStandardHours;
 
    @Excel(name = "实际报工工时(小时)", sort = 10)
    private BigDecimal actualReportHours;
 
    @Excel(name = "每人每日工时(小时)", sort = 11)
    private BigDecimal dailyPersonHours;
 
    @Excel(name = "产出总数量", sort = 12)
    private BigDecimal outputTotalQuantity;
 
    @Excel(name = "报废总数量", sort = 13)
    private BigDecimal scrapTotalQuantity;
}