|
|
|
@ -82,17 +82,15 @@ public class StoreAppVO implements Serializable {
|
|
|
|
|
private String code;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "折扣")
|
|
|
|
|
private Float discount;
|
|
|
|
|
private String discount;
|
|
|
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
@ApiModelProperty("创建时间")
|
|
|
|
|
private LocalDateTime createTime;
|
|
|
|
|
@ApiModelProperty(value = "折扣描述")
|
|
|
|
|
private String discountDescription;
|
|
|
|
|
|
|
|
|
|
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, String contactAvatar, String contactNickName, Integer visitCount, String introduction, String code, Float discount) {
|
|
|
|
|
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, String contactAvatar, String contactNickName, Integer visitCount, String introduction, String code, String discount, String discountDescription) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.name = name;
|
|
|
|
|
this.regionId = regionId;
|
|
|
|
@ -111,44 +109,7 @@ public class StoreAppVO implements Serializable {
|
|
|
|
|
this.introduction = introduction;
|
|
|
|
|
this.code = code;
|
|
|
|
|
this.discount = discount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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, String contactAvatar, String contactNickName, Integer visitCount, String introduction, String code) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.name = name;
|
|
|
|
|
this.regionId = regionId;
|
|
|
|
|
this.address = address;
|
|
|
|
|
this.lng = lng;
|
|
|
|
|
this.lat = lat;
|
|
|
|
|
this.contact = contact;
|
|
|
|
|
this.phone = phone;
|
|
|
|
|
this.tel = tel;
|
|
|
|
|
this.openingHours = openingHours;
|
|
|
|
|
this.background = background;
|
|
|
|
|
this.description = description;
|
|
|
|
|
this.contactAvatar = contactAvatar;
|
|
|
|
|
this.contactNickName = contactNickName;
|
|
|
|
|
this.visitCount = visitCount;
|
|
|
|
|
this.introduction = introduction;
|
|
|
|
|
this.code = code;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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, String introduction, String code) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.name = name;
|
|
|
|
|
this.regionId = regionId;
|
|
|
|
|
this.address = address;
|
|
|
|
|
this.lng = lng;
|
|
|
|
|
this.lat = lat;
|
|
|
|
|
this.contact = contact;
|
|
|
|
|
this.phone = phone;
|
|
|
|
|
this.tel = tel;
|
|
|
|
|
this.openingHours = openingHours;
|
|
|
|
|
this.background = background;
|
|
|
|
|
this.description = description;
|
|
|
|
|
this.visitCount = visitCount;
|
|
|
|
|
this.introduction = introduction;
|
|
|
|
|
this.code = code;
|
|
|
|
|
this.discountDescription = discountDescription;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|