|
@@ -60,6 +60,9 @@ public class NewCmShop extends DataEntity<NewCmShop> {
|
|
private String scope; // scope
|
|
private String scope; // scope
|
|
private String info; // 介绍
|
|
private String info; // 介绍
|
|
private String productDesc; // 主打产品说明
|
|
private String productDesc; // 主打产品说明
|
|
|
|
+ private String website; // 网址
|
|
|
|
+ private String wxOfficialAccount; //微信公众号
|
|
|
|
+ private String wxApplets; //微信小程序
|
|
private Double lng; // lng
|
|
private Double lng; // lng
|
|
private Double lat; // lat
|
|
private Double lat; // lat
|
|
private String addTime; // 添加时间
|
|
private String addTime; // 添加时间
|
|
@@ -487,7 +490,7 @@ public class NewCmShop extends DataEntity<NewCmShop> {
|
|
this.scope = scope;
|
|
this.scope = scope;
|
|
}
|
|
}
|
|
|
|
|
|
- @Length(min = 0, max = 2500, message = "介绍长度必须介于 0 和 2500 之间")
|
|
|
|
|
|
+ @Length(min = 0, max = 5000, message = "介绍长度必须介于 0 和 5000 之间")
|
|
public String getInfo() {
|
|
public String getInfo() {
|
|
return info;
|
|
return info;
|
|
}
|
|
}
|
|
@@ -496,7 +499,7 @@ public class NewCmShop extends DataEntity<NewCmShop> {
|
|
this.info = info;
|
|
this.info = info;
|
|
}
|
|
}
|
|
|
|
|
|
- @Length(min = 0, max = 1000, message = "主打产品说明长度必须介于 0 和 1000 之间")
|
|
|
|
|
|
+ @Length(min = 0, max = 5000, message = "主打产品说明长度必须介于 0 和 5000 之间")
|
|
public String getProductDesc() {
|
|
public String getProductDesc() {
|
|
return productDesc;
|
|
return productDesc;
|
|
}
|
|
}
|
|
@@ -1020,4 +1023,28 @@ public class NewCmShop extends DataEntity<NewCmShop> {
|
|
public void setSocialCreditCode(String socialCreditCode) {
|
|
public void setSocialCreditCode(String socialCreditCode) {
|
|
this.socialCreditCode = socialCreditCode;
|
|
this.socialCreditCode = socialCreditCode;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public String getWebsite() {
|
|
|
|
+ return website;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setWebsite(String website) {
|
|
|
|
+ this.website = website;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getWxOfficialAccount() {
|
|
|
|
+ return wxOfficialAccount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setWxOfficialAccount(String wxOfficialAccount) {
|
|
|
|
+ this.wxOfficialAccount = wxOfficialAccount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getWxApplets() {
|
|
|
|
+ return wxApplets;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setWxApplets(String wxApplets) {
|
|
|
|
+ this.wxApplets = wxApplets;
|
|
|
|
+ }
|
|
}
|
|
}
|