|
|
|
@ -72,10 +72,16 @@ public class StoreAppVO implements Serializable {
|
|
|
|
|
@ApiModelProperty(value = "门店访问量")
|
|
|
|
|
private Integer visitCount;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "简介")
|
|
|
|
|
private String introduction;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "编码")
|
|
|
|
|
private String code;
|
|
|
|
|
|
|
|
|
|
public StoreAppVO() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public StoreAppVO(String id, String name, Integer regionId, String address, String lng, String lat, String contact, String phone, String tel, String openingHours, String background, String description, Integer visitCount) {
|
|
|
|
|
public StoreAppVO(String id, String name, Integer regionId, String address, String lng, String lat, String contact, String phone, String tel, String openingHours, String background, String description, Region region, Double distance, Integer visitCount, String introduction, String code) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.name = name;
|
|
|
|
|
this.regionId = regionId;
|
|
|
|
@ -88,6 +94,10 @@ public class StoreAppVO implements Serializable {
|
|
|
|
|
this.openingHours = openingHours;
|
|
|
|
|
this.background = background;
|
|
|
|
|
this.description = description;
|
|
|
|
|
this.region = region;
|
|
|
|
|
this.distance = distance;
|
|
|
|
|
this.visitCount = visitCount;
|
|
|
|
|
this.introduction = introduction;
|
|
|
|
|
this.code = code;
|
|
|
|
|
}
|
|
|
|
|
}
|