huminmin
2026-07-13 53c0da6e44a01acf9d97bdc7abaf25e5984b92dc
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
package com.ruoyi.production.bean.dto;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDate;
 
@Data
@Schema(name = "ProductionAccountDetailExportDto", description = "生产核算导出明细")
public class ProductionAccountDetailExportDto {
 
    @Excel(name = "报工单号")
    private String reportNo;
 
    @Excel(name = "生产日期", dateFormat = "yyyy-MM-dd")
    private LocalDate schedulingDate;
 
    @Excel(name = "生产人")
    private String schedulingUserName;
 
    @Excel(name = "审核状态")
    private String auditStatusName;
 
    @Excel(name = "报工类型")
    private String reportTypeName;
 
    @Excel(name = "销售合同号")
    private String salesContractNo;
 
    @Excel(name = "产品大类")
    private String productName;
 
    @Excel(name = "规格型号")
    private String productModelName;
 
    @Excel(name = "单位")
    private String unit;
 
    @Excel(name = "工序")
    private String process;
 
    @Excel(name = "工单编号")
    private String workOrderNo;
 
    @Excel(name = "工时(h)")
    private BigDecimal workHour;
 
    @Excel(name = "生产数量")
    private BigDecimal quantity;
 
    @Excel(name = "工时定额")
    private BigDecimal workHours;
 
    @Excel(name = "工资")
    private BigDecimal wages;
}