diff --git a/coolstore-partner-common/pom.xml b/coolstore-partner-common/pom.xml index a6081765b..0631d8e4f 100644 --- a/coolstore-partner-common/pom.xml +++ b/coolstore-partner-common/pom.xml @@ -87,6 +87,10 @@ com.aliyun tea-openapi + + com.coolstore + coolstore-base + org.springframework.boot spring-boot-starter-data-redis diff --git a/coolstore-partner-model/src/main/java/com/cool/store/request/StoreRequestBody.java b/coolstore-partner-model/src/main/java/com/cool/store/request/StoreRequestBody.java new file mode 100644 index 000000000..6423a0863 --- /dev/null +++ b/coolstore-partner-model/src/main/java/com/cool/store/request/StoreRequestBody.java @@ -0,0 +1,89 @@ +package com.cool.store.request; + +import com.alibaba.fastjson.JSONObject; +import lombok.Data; + +import java.util.List; + +/** + * @ClassName StoreRequestBody + * @Description 用一句话描述什么 + */ +@Data +public class StoreRequestBody { + private String store_id; + private String store_name; + private String store_num; + /** + * 门头照 + */ + private String avatar; + private String store_area; + /** + * 省 + */ + private String province; + /** + * 市 + */ + private String city; + /** + * 区 + */ + private String county; + private String store_address; + private String location_address; + /** + * 经纬度 + */ + private String longitude_latitude; + private String telephone; + private String device_id; + private String remark; + + /** + * 营业时间 + */ + private String business_hours; + /** + * 门店面积 + */ + private String store_acreage; + /** + * 门店带宽 + */ + private String store_bandwidth; + + /** + * 门店分组id + */ + private String group_ids; + + /** + * 门店状态(open:营业、closed:闭店、not_open:未开业) + */ + private String store_status; + + /** + * 动态扩展字段 + */ + private String extend_field; + + /** + * 门店证照列表 + */ + private List storeLicenseInstances; + + /** + * 第三方管理唯一key + */ + private String thirdDeptId; + + + private String openDate; + + /** + * 品牌id + */ + private Long brandId; +} diff --git a/pom.xml b/pom.xml index 545c8d7fa..11cead3af 100644 --- a/pom.xml +++ b/pom.xml @@ -232,6 +232,11 @@ alibabacloud-dysmsapi20170525 2.0.24 + + com.coolstore + coolstore-base + 1.8.2 +