package org.springblade.modules.doorplateAddress.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 com.baomidou.mybatisplus.annotation.TableField;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* ImportHouseHoldExcel
|
*
|
* @author Chill
|
*/
|
@Data
|
@ColumnWidth(25)
|
@HeadRowHeight(20)
|
@ContentRowHeight(18)
|
public class ImportDoorplateExcel implements Serializable {
|
|
private static final long serialVersionUID = 2L;
|
|
|
|
/**
|
* 地址名称
|
*/
|
@ExcelProperty(value = "地址名称")
|
private String addressName;
|
|
/**
|
* 门牌地址编码
|
*/
|
@ExcelProperty(value = "门牌地址编码")
|
private String addressCode;
|
|
/**
|
* 经度
|
*/
|
@ExcelProperty(value = "经度")
|
private String X;
|
/**
|
* 纬度
|
*/
|
@ExcelProperty(value = "纬度")
|
private String Y;
|
|
/**
|
* x84经度
|
*/
|
@ExcelProperty(value = "x84经度")
|
@TableField("x_84")
|
private String x84;
|
/**
|
* y84纬度
|
*/
|
@ExcelProperty(value = "y84纬度")
|
@TableField("y_84")
|
private String y84;
|
/**
|
* 行政区编码
|
*/
|
@ExcelProperty(value = "行政区编码")
|
private String regionCode;
|
/**
|
* 行政区名称
|
*/
|
@ExcelProperty(value = "行政区名称")
|
private String regionName;
|
/**
|
* 乡镇街道编号
|
*/
|
@ExcelProperty(value = "乡镇街道编号")
|
@TableField("town_street_code")
|
private String townStreetCode;
|
/**
|
* 乡镇街道名称
|
*/
|
@ExcelProperty(value = "乡镇街道名称")
|
private String townStreetName;
|
/**
|
* 居委会(社区)编号
|
*/
|
@ExcelProperty(value = "居委会(社区)编号")
|
private String neiCode;
|
/**
|
* 居委会(社区)名称
|
*/
|
@ExcelProperty(value = "居委会(社区)名称")
|
private String neiName;
|
/**
|
* 街路巷编码
|
*/
|
@ExcelProperty(value = "街路巷编码")
|
private String streetRuCode;
|
/**
|
* 街路巷名称
|
*/
|
@ExcelProperty(value = "街路巷名称")
|
private String streetRuName;
|
/**
|
* 分局代码
|
*/
|
@ExcelProperty(value = "分局代码")
|
private String branchCode;
|
/**
|
* 分局名称
|
*/
|
@ExcelProperty(value = "分局名称")
|
private String branchName;
|
/**
|
* 派出所代码
|
*/
|
@ExcelProperty(value = "派出所代码")
|
private String localPoliceStationCode;
|
/**
|
* 派出所名称
|
*/
|
@ExcelProperty(value = "派出所名称")
|
private String localPoliceStationName;
|
/**
|
* 警务室代码
|
*/
|
@ExcelProperty(value = "警务室代码")
|
private String policeAffairsCode;
|
/**
|
* 警务室名称
|
*/
|
@ExcelProperty(value = "警务室名称")
|
private String policeAffairsName;
|
/**
|
* 单元编码
|
*/
|
@ExcelProperty(value = "单元编码")
|
private String unitCode;
|
/**
|
* 单元号(名称)
|
*/
|
@ExcelProperty(value = "单元号(名称)")
|
private String unitName;
|
/**
|
* 楼栋编码
|
*/
|
@ExcelProperty(value = "楼栋编码")
|
private String buildingCode;
|
/**
|
* 楼栋号(名称)
|
*/
|
@ExcelProperty(value = "楼栋号(名称)")
|
private String buildingName;
|
/**
|
* 户室号(名称)
|
*/
|
@ExcelProperty(value = "户室号(名称)")
|
private String houseName;
|
/**
|
* 楼层
|
*/
|
@ExcelProperty(value = "楼层")
|
private String floor;
|
/**
|
* 小区编码
|
*/
|
@ExcelProperty(value = "小区编码")
|
private String aoiCode;
|
/**
|
* 小区名称
|
*/
|
@ExcelProperty(value = "小区名称")
|
private String aoiName;
|
/**
|
* 兴趣点code
|
*/
|
@ExcelProperty(value = "兴趣点code")
|
private String poiCode;
|
/**
|
* 兴趣点名称
|
*/
|
@ExcelProperty(value = "兴趣点名称")
|
private String poi;
|
/**
|
* 地址级别
|
*/
|
@ExcelProperty(value = "地址级别")
|
private Integer addressLevel;
|
/**
|
* 父节点地址编码
|
*/
|
@ExcelProperty(value = "父节点地址编码")
|
private String parentAddressCode;
|
/**
|
* 采集照片url
|
*/
|
@ExcelProperty(value = "采集照片url")
|
private String gatPicUrl;
|
/**
|
* 门牌状态
|
*/
|
@ExcelProperty(value = "门牌状态")
|
private String doorplateStatus;
|
/**
|
* 门牌类型
|
*/
|
@ExcelProperty(value = "门牌类型")
|
private String doorplateType;
|
/**
|
* 门牌类型编号
|
*/
|
@ExcelProperty(value = "门牌类型编号")
|
private String doorplateTypeCode;
|
/**
|
* 门牌号
|
*/
|
@ExcelProperty(value = "门牌号")
|
private String doorplateNum;
|
/**
|
* 门牌名称
|
*/
|
@ExcelProperty(value = "门牌名称")
|
private String doorplateName;
|
/**
|
* 二维码路径
|
*/
|
@ExcelProperty(value = "二维码路径")
|
private String qrCodePath;
|
|
/**
|
* 子门牌号
|
*/
|
@ExcelProperty(value = "子门牌号")
|
private String subDoorPlateNo;
|
|
/**
|
* 大门名称
|
*/
|
@ExcelProperty(value = "大门名称")
|
private String gateName;
|
/**
|
* 操作类型
|
*/
|
@ExcelProperty(value = "操作类型")
|
private Integer operationType;
|
/**
|
* 地址类型
|
*/
|
@ExcelProperty(value = "地址类型")
|
private Integer addressType;
|
/**
|
* 子小区名称
|
*/
|
@ExcelProperty(value = "子小区名称")
|
private String subAoi;
|
/**
|
* 民警姓名
|
*/
|
@ExcelProperty(value = "民警姓名")
|
private String policeman;
|
/**
|
* 民警电话
|
*/
|
@ExcelProperty(value = "民警电话")
|
private String policemanPhone;
|
/**
|
* 警务网格编码
|
*/
|
@ExcelProperty(value = "警务网格编码")
|
private String jwwgCode;
|
|
}
|