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;
|
}
|