Commit 88e89355 by zhiwj

门店添加默认图片

parent 26554a7e
......@@ -14,6 +14,8 @@ public interface Constants {
String dateformat = "YYYY-MM-dd HH:mm:ss";
// enterprise:store:${enterpriseId}:#{storeId}
String STORE_KEY = "enterprise:store:";
// 小程序默认图片
String DEFAULT_PHOTO = "https://pic01-10001430.image.myqcloud.com/a5a82c47-5892-4c1c-afaf-0f8d4d41e032";
String NATIONCODE = "086";
......
......@@ -48,6 +48,10 @@ public class StoreDTO extends StoreInfoDTO implements Serializable {
private String remark;
private Integer operatorId;
private String operatorName;
/**
* 小程序默认图片
*/
private StorePhotoDTO defaultPhoto;
public Integer getStoreId() {
return storeId;
......@@ -176,4 +180,12 @@ public class StoreDTO extends StoreInfoDTO implements Serializable {
public void setEvaluateCount(Integer evaluateCount) {
this.evaluateCount = evaluateCount;
}
public void setDefaultPhoto(StorePhotoDTO defaultPhoto) {
this.defaultPhoto = defaultPhoto;
}
public StorePhotoDTO getDefaultPhoto() {
return defaultPhoto;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment