ProjectMembersVO.java 783 Bytes
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;

}