|
|
|
@@ -6,25 +6,25 @@ public class WxNotRentShopVo { |
|
|
|
|
|
|
|
@Excel(name="商铺类型",width = 20,orderNum = "1", |
|
|
|
replace = {"商铺_null", "固定点位_1", "临时促销点位_2", "宣传点位_3","ATM点位_4","仓库点位_5","其他点位_6"}) |
|
|
|
private Integer pointType; |
|
|
|
private String pointType; |
|
|
|
@Excel(name="商铺号",width = 20,orderNum = "2") |
|
|
|
private String shopNumber; |
|
|
|
@Excel(name="楼座",width = 20,orderNum = "3") |
|
|
|
private Long building; |
|
|
|
private String building; |
|
|
|
@Excel(name="楼层",width = 20,orderNum = "4") |
|
|
|
private Long floor; |
|
|
|
private String floor; |
|
|
|
@Excel(name="建筑面积(㎡)",width = 20,orderNum = "5") |
|
|
|
private String buildArea; |
|
|
|
@Excel(name="计租面积(㎡)",width = 20,orderNum = "6") |
|
|
|
private String operationArea; |
|
|
|
@Excel(name="闲置时间(天)",width = 20,orderNum = "7") |
|
|
|
private Integer freeDay; |
|
|
|
private Long freeDay; |
|
|
|
|
|
|
|
public Integer getPointType() { |
|
|
|
public String getPointType() { |
|
|
|
return pointType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setPointType(Integer pointType) { |
|
|
|
public void setPointType(String pointType) { |
|
|
|
this.pointType = pointType; |
|
|
|
} |
|
|
|
|
|
|
|
@@ -36,19 +36,19 @@ public class WxNotRentShopVo { |
|
|
|
this.shopNumber = shopNumber; |
|
|
|
} |
|
|
|
|
|
|
|
public Long getBuilding() { |
|
|
|
public String getBuilding() { |
|
|
|
return building; |
|
|
|
} |
|
|
|
|
|
|
|
public void setBuilding(Long building) { |
|
|
|
public void setBuilding(String building) { |
|
|
|
this.building = building; |
|
|
|
} |
|
|
|
|
|
|
|
public Long getFloor() { |
|
|
|
public String getFloor() { |
|
|
|
return floor; |
|
|
|
} |
|
|
|
|
|
|
|
public void setFloor(Long floor) { |
|
|
|
public void setFloor(String floor) { |
|
|
|
this.floor = floor; |
|
|
|
} |
|
|
|
|
|
|
|
@@ -68,11 +68,11 @@ public class WxNotRentShopVo { |
|
|
|
this.operationArea = operationArea; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getFreeDay() { |
|
|
|
public Long getFreeDay() { |
|
|
|
return freeDay; |
|
|
|
} |
|
|
|
|
|
|
|
public void setFreeDay(Integer freeDay) { |
|
|
|
public void setFreeDay(Long freeDay) { |
|
|
|
this.freeDay = freeDay; |
|
|
|
} |
|
|
|
} |