李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
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
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;
}