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; }