Blame view

ProjectMembersVO.java 783 Bytes
涂亚平 committed
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
package com.subsidy.vo.salary;

import com.subsidy.util.excel.ExcelColumn;
import lombok.Data;

@Data
public class ProjectMembersVO {

    private Long id;

    private Long projectMappingId;

    @ExcelColumn(value = "姓名", col = 1)
    private String userName;

    @ExcelColumn(value = "手机号", col = 2)
    private String telephone;

    @ExcelColumn(value = "工资账户", col = 3)
    private String payrollAccount;

    private String bank;

    private String jobName;

    @ExcelColumn(value = "金额", col = 5)
    private String salary;

    @ExcelColumn(value = "明细", col = 4)
    private String salaryMark;

    @ExcelColumn(value = "发放时间", col = 6)
    private String salaryDate;

    private Integer commitStatus;

    private Long unCommitId;

}