package cn.gistack.sm.sjztmd.excel;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
import com.alibaba.excel.annotation.write.style.ContentRowHeight;
|
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
|
import lombok.Data;
|
|
@Data
|
@ColumnWidth(30)
|
@HeadRowHeight(25)
|
@ContentRowHeight(18)
|
public class AttResBaseUserExcel {
|
|
@ColumnWidth(20)
|
@ExcelProperty("水库名称")
|
private String name;
|
|
@ColumnWidth(20)
|
@ExcelProperty("市")
|
private String cityName;
|
@ColumnWidth(20)
|
@ExcelProperty("区县")
|
private String countyName;
|
@ColumnWidth(20)
|
@ExcelProperty("街道乡镇")
|
private String townName;
|
@ColumnWidth(20)
|
@ExcelProperty("管理行政区")
|
private String adName;
|
@ColumnWidth(20)
|
@ExcelProperty("工程规模")
|
private String engScal;
|
@ColumnWidth(20)
|
@ExcelProperty("注册登记码")
|
private String resRegCode;
|
|
@ExcelProperty({"行政责任人", "姓名"})
|
private String areaUsername;
|
|
@ExcelProperty({"行政责任人", "职务"})
|
private String areaPosition;
|
|
@ExcelProperty({"行政责任人", "所属单位"})
|
private String areaUnitName;
|
|
@ExcelProperty({"行政责任人", "联系电话"})
|
private String areaPhone;
|
|
|
|
@ExcelProperty({"主管部门责任人", "姓名"})
|
private String customsUsername;
|
|
@ExcelProperty({"主管部门责任人", "职务"})
|
private String customsPosition;
|
|
@ExcelProperty({"主管部门责任人", "所属单位"})
|
private String customsUnitName;
|
|
@ExcelProperty({"主管部门责任人", "联系电话"})
|
private String customsPhone;
|
|
|
|
@ExcelProperty({"管理单位责任人", "姓名"})
|
private String manageUnitUsername;
|
|
@ExcelProperty({"管理单位责任人", "职务"})
|
private String manageUnitPosition;
|
|
@ExcelProperty({"管理单位责任人", "所属单位"})
|
private String manageUnitUnitName;
|
|
@ExcelProperty({"管理单位责任人", "联系电话"})
|
private String manageUnitPhone;
|
|
|
@ExcelProperty({"技术责任人", "姓名"})
|
private String technologyUsername;
|
|
@ExcelProperty({"技术责任人", "职务"})
|
private String technologyPosition;
|
|
@ExcelProperty({"技术责任人", "所属单位"})
|
private String technologyUnitName;
|
|
@ExcelProperty({"技术责任人", "联系电话"})
|
private String technologyPhone;
|
|
|
@ExcelProperty({"巡查责任人", "姓名"})
|
private String patrolUsername;
|
|
@ExcelProperty({"巡查责任人", "职务"})
|
private String patrolPosition;
|
|
@ExcelProperty({"巡查责任人", "所属单位"})
|
private String patrolUnitName;
|
|
@ExcelProperty({"巡查责任人", "联系电话"})
|
private String patrolPhone;
|
|
|
}
|