mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
package com.panzhihua.common.model.vos.partybuilding.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @description: 批量导入党员双报道单位
 * @author : lyq
 */
@Data
public class ComPbCheckUnitErrorExcelVO implements Serializable {
 
    @ExcelProperty(value = "单位名称", index = 0)
    private String name;
 
    @ExcelProperty(value = "单位类别", index = 1)
    private String type;
 
    @ExcelProperty(value = "单位负责人", index = 2)
    private String contacts;
 
    @ExcelProperty(value = "负责人联系电话", index = 3)
    private String phone;
 
    @ExcelProperty(value = "错误信息", index = 4)
    private String error;
}