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