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
50
51
52
53
54
55
56
package com.ruoyi.production.dto;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Data
public class ProductionProductMainDetailExportDto {
 
    @Excel(name = "产品编号", sort = 1)
    private String productNo;
 
    @Excel(name = "操作人员", sort = 2)
    private String nickName;
 
    @Excel(name = "工序", sort = 3)
    private String process;
 
    @Excel(name = "工单号", sort = 4)
    private String workOrderNo;
 
    @Excel(name = "销售合同号", sort = 5)
    private String salesContractNo;
 
    @Excel(name = "生产订单号", sort = 6)
    private String productOrderNpsNo;
 
    @Excel(name = "产品名称", sort = 7)
    private String productName;
 
    @Excel(name = "产品规格型号", sort = 8)
    private String productModelName;
 
    @Excel(name = "合格数量", sort = 9)
    private BigDecimal quantity;
 
    @Excel(name = "不合格数量", sort = 10)
    private BigDecimal scrapQty;
 
    @Excel(name = "单位", sort = 11)
    private String unit;
 
    @Excel(name = "工序标准工时(小时)", sort = 12)
    private BigDecimal processStandardHours;
 
    @Excel(name = "实际报工工时(小时)", sort = 13)
    private BigDecimal actualReportHours;
 
    @Excel(name = "每人每日工时(小时)", sort = 14)
    private BigDecimal dailyPersonHours;
 
    @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss", sort = 15)
    private LocalDateTime createTime;
}