package com.chinaztt.mes.production.excel;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @Description : 班次工资
|
* @ClassName : ShiftWageData
|
* @Author : sll
|
* @Date: 2022-12-05 10:32
|
*/
|
@Data
|
public class ShiftWageData{
|
@ExcelProperty("班次日期")
|
private String nowDutyDate;
|
|
@ExcelProperty("人员名称")
|
private String staffName;
|
|
@ExcelProperty("人员编号")
|
private String staffNo;
|
|
@ExcelProperty("生产班组")
|
private String crewName;
|
|
@ExcelProperty("机台名称")
|
private String workstationName;
|
|
@ExcelProperty("个人产量")
|
private BigDecimal personOutput;
|
|
@ExcelProperty("工序系数")
|
private BigDecimal operationCoeff;
|
|
@ExcelProperty(value = "杂工工资")
|
private BigDecimal handymanWage;
|
|
@ExcelProperty(value = "产量工资")
|
private BigDecimal productionWage;
|
|
@ExcelProperty(value = "班次工资汇总")
|
private BigDecimal summaryWage;
|
}
|