|
@ -18,6 +18,7 @@ |
|
|
package com.epmet.excel; |
|
|
package com.epmet.excel; |
|
|
|
|
|
|
|
|
import cn.afterturn.easypoi.excel.annotation.Excel; |
|
|
import cn.afterturn.easypoi.excel.annotation.Excel; |
|
|
|
|
|
import com.alibaba.excel.annotation.ExcelProperty; |
|
|
import com.epmet.util.ExcelVerifyInfo; |
|
|
import com.epmet.util.ExcelVerifyInfo; |
|
|
import com.fasterxml.jackson.annotation.JsonIgnore; |
|
|
import com.fasterxml.jackson.annotation.JsonIgnore; |
|
|
import lombok.Data; |
|
|
import lombok.Data; |
|
@ -108,6 +109,18 @@ public class IcNeighborHoodExcel extends ExcelVerifyInfo implements Serializable |
|
|
@Length(max=50,message = "不能超过50个字") |
|
|
@Length(max=50,message = "不能超过50个字") |
|
|
private String neighborHoodName; |
|
|
private String neighborHoodName; |
|
|
|
|
|
|
|
|
|
|
|
@Excel(name = "小区/自然村类型") |
|
|
|
|
|
private String viliageTypeName; |
|
|
|
|
|
|
|
|
|
|
|
@Excel(name = "面积") |
|
|
|
|
|
private String area; |
|
|
|
|
|
|
|
|
|
|
|
@Excel(name = "开放类型") |
|
|
|
|
|
private String openTypeName; |
|
|
|
|
|
|
|
|
|
|
|
@Excel(name = "建筑年代") |
|
|
|
|
|
private String buildYear; |
|
|
|
|
|
|
|
|
@Excel(name = "关联物业") |
|
|
@Excel(name = "关联物业") |
|
|
private String propertyName; |
|
|
private String propertyName; |
|
|
|
|
|
|
|
|