getShopTopArea.md
1.62 KB
用户画像--地域分布
接口名:
/chart/getShopTopArea
例子(http://localhost:8080/chart/getShopTopArea)
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 | 长度限制 |
---|---|---|---|---|---|
shopId | number | 16 | 店铺ID | Y | |
dateId | number | 12 | 时间点 | Y |
对应SQL的操作库表
<select id="selectShopTopAreaByShopId" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from shop_top_area
<where>
<if test="shopTopArea.shopId != null ">
and shop_id=#{shopTopArea.shopId,jdbcType=INTEGER}
</if>
<if test="shopTopArea.shopId != null ">
and date_id=#{shopTopArea.dateId,jdbcType=INTEGER}
</if>
</where>
order by order_rate desc
limit 10
</select>
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 查询成功! | |
401 | 参数错误! | |
500 | 查询失败! |
返回
{
"alg": "SALT_MD5",
"code": 200,
"data":
{
"shop":
{
"江苏": 66,
"福建": 54,
"贵州": 99,
"重庆": 87
},
"yoho":
{
"江苏": 66,
"福建": 54,
"贵州": 99,
"重庆": 87
}
},
"md5": "fac8138b7f4741b2015aa7dd47f21be4",
"message": "getShopTopArea success"
}