Authored by ZhongW

Add new file

# 用户画像--地域分布
> 接口名: `/chart/getShopTopArea` 例子(http://localhost:8080/chart/updateProductPool)
### 方法
> POST JSONRAW
### 入参
-------------------------
|属性名称|类型|例子|说明|是否必填|长度限制|
|--------|----|----|---|----|--------|
|shopId|number|16|店铺ID|Y||
|dateId|number|12|时间点|Y||
### 对应SQL的操作库表
```xml
<select id="selectShopTopArea">
select * from shop_top_area where rank<11 and shop_id=#{shopId,jdbcType=INTEGER}
and date_id=#{dateId,jdbcType=INTEGER}
union all
select * from shop_top_area where shop_id = -1 and date_id=#{dateId,jdbcType=INTEGER}
</select>
```
### 错误编码
-------------------------
|错误码code|消息|说明|
|--------|----|----|
|200| 查询成功!| |
|401| 参数错误!| |
|500| 查询失败!| |
### 返回
``` json
{
"alg": "SALT_MD5",
"code": 200,
"data": [
"all": [
{"南京":123},
{"无锡":123},
{"扬州":123}
],
"area": [
{"南京":123},
{"无锡":123},
{"扬州":123}
]
],
"md5": "64cdf0d30ba9174ddce76ecf71a91ad8",
"message": "ProductPool update success."
}
```
\ No newline at end of file
... ...