Blame view

DownloadFailClassMembersDTO.java 448 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
package com.subsidy.dto.member;

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

@Data
public class DownloadFailClassMembersDTO {

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

    @ExcelColumn(value = "身份证", col = 2)
    private String idCard;

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

    @ExcelColumn(value = "原因", col = 4)
    private String reason;

}