Commit 4162f3b1 authored by changxiangyu's avatar changxiangyu

bug修改,删除ExcelProperty注解的index

parent 57d36fb5
...@@ -13,79 +13,79 @@ public class ImportYsEmergencyUnitVo { ...@@ -13,79 +13,79 @@ public class ImportYsEmergencyUnitVo {
/** /**
* 名称 . * 名称 .
*/ */
@ExcelProperty(value = "名称",index = 0) @ExcelProperty(value = "名称")
private String name; private String name;
/** /**
* 关联消防队 . * 关联消防队 .
*/ */
@ExcelProperty(value = "关联消防队",index = 1) @ExcelProperty(value = "关联消防队")
private Integer teamId; private Integer teamId;
/** /**
* 地址 . * 地址 .
*/ */
@ExcelProperty(value = "地址",index = 2) @ExcelProperty(value = "地址")
private String address; private String address;
/** /**
* 经纬度 . * 经纬度 .
*/ */
@ExcelProperty(value = "经纬度",index = 3) @ExcelProperty(value = "经纬度")
private String longitudeLatitude; private String longitudeLatitude;
/** /**
* 应急服务内容 . * 应急服务内容 .
*/ */
@ExcelProperty(value = "应急服务内容",index = 4) @ExcelProperty(value = "应急服务内容")
private String emergencyService; private String emergencyService;
/** /**
* 单位传真 . * 单位传真 .
*/ */
@ExcelProperty(value = "单位传真",index = 5) @ExcelProperty(value = "单位传真")
private String fax; private String fax;
/** /**
* 保障能力 . * 保障能力 .
*/ */
@ExcelProperty(value = "保障能力",index = 6) @ExcelProperty(value = "保障能力")
private String guaranteeCapability; private String guaranteeCapability;
/** /**
* 保障类别 . * 保障类别 .
*/ */
@ExcelProperty(value = "保障类别",index = 7) @ExcelProperty(value = "保障类别")
private String guaranteeType; private String guaranteeType;
/** /**
* 联系人 . * 联系人 .
*/ */
@ExcelProperty(value = "联系人",index = 8) @ExcelProperty(value = "联系人")
private String linkman; private String linkman;
/** /**
* 部门代码 . * 部门代码 .
*/ */
@ExcelProperty(value = "部门代码",index = 9) @ExcelProperty(value = "部门代码")
private String orgCode; private String orgCode;
/** /**
* 单位概述 . * 单位概述 .
*/ */
@ExcelProperty(value = "单位概述",index = 10) @ExcelProperty(value = "单位概述")
private String overview; private String overview;
/** /**
* 负责人 . * 负责人 .
*/ */
@ExcelProperty(value = "负责人",index = 11) @ExcelProperty(value = "负责人")
private String person; private String person;
/** /**
* 联系电话 . * 联系电话 .
*/ */
@ExcelProperty(value = "联系电话",index = 12) @ExcelProperty(value = "联系电话")
private String phone; private String phone;
...@@ -93,25 +93,25 @@ public class ImportYsEmergencyUnitVo { ...@@ -93,25 +93,25 @@ public class ImportYsEmergencyUnitVo {
/** /**
* 单位编号 . * 单位编号 .
*/ */
@ExcelProperty(value = "单位编号",index = 13) @ExcelProperty(value = "单位编号")
private String unitNum; private String unitNum;
/** /**
* 单位类型 . * 单位类型 .
*/ */
@ExcelProperty(value = "单位类型",index = 14) @ExcelProperty(value = "单位类型")
private String unitType; private String unitType;
/** /**
* 行政区划编号 . * 行政区划编号 .
*/ */
@ExcelProperty(value = "行政区划编号",index = 15) @ExcelProperty(value = "行政区划编号")
private String xzqhbh; private String xzqhbh;
/** /**
* 类型 . * 类型 .
*/ */
@ExcelProperty(value = "type",index = 16) @ExcelProperty(value = "type")
private String type; private String type;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment