package com.ruoyi.production.bean.vo;
|
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDate;
|
|
/**
|
* 生产核算明细导出
|
*/
|
@Data
|
public class ProductionAccountExportVo {
|
|
@Excel(name = "生产日期", dateFormat = "yyyy-MM-dd", sort = 1)
|
private LocalDate schedulingDate;
|
|
@Excel(name = "生产人", sort = 2)
|
private String schedulingUserName;
|
|
@Excel(name = "产品大类", sort = 3)
|
private String productName;
|
|
@Excel(name = "规格型号", sort = 4)
|
private String productModelName;
|
|
@Excel(name = "单位", sort = 5)
|
private String unit;
|
|
@Excel(name = "工序", sort = 6)
|
private String process;
|
|
@Excel(name = "工时(h)", sort = 7)
|
private BigDecimal workHour;
|
|
@Excel(name = "生产数量", sort = 8)
|
private BigDecimal quantity;
|
|
@Excel(name = "工时定额", sort = 9)
|
private BigDecimal workHours;
|
|
@Excel(name = "工资", sort = 10)
|
private BigDecimal wages;
|
}
|