base
This commit is contained in:
@@ -87,6 +87,10 @@
|
||||
<groupId>com.aliyun</groupId>
|
||||
<artifactId>tea-openapi</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.coolstore</groupId>
|
||||
<artifactId>coolstore-base</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||||
|
||||
@@ -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<JSONObject> storeLicenseInstances;
|
||||
|
||||
/**
|
||||
* 第三方管理唯一key
|
||||
*/
|
||||
private String thirdDeptId;
|
||||
|
||||
|
||||
private String openDate;
|
||||
|
||||
/**
|
||||
* 品牌id
|
||||
*/
|
||||
private Long brandId;
|
||||
}
|
||||
5
pom.xml
5
pom.xml
@@ -232,6 +232,11 @@
|
||||
<artifactId>alibabacloud-dysmsapi20170525</artifactId>
|
||||
<version>2.0.24</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.coolstore</groupId>
|
||||
<artifactId>coolstore-base</artifactId>
|
||||
<version>1.8.2</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user