101captain
2022-04-25 b2c975094e4a3cac5ba67c154e9b7b4fd0ce35c9
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 ComPbCheckUnitExcelVO 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 orgName;
}