getConsumeAna.md
1.53 KB
用户画像--人群分布--消费水平
接口名:
/chart/getConsumeAna
例子(http://localhost:8080/chart/getConsumeAna)
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 | 长度限制 |
---|---|---|---|---|---|
shopId | number | 16 | 店铺ID | Y | |
dateId | number | 12 | 时间点 | Y |
对应SQL的操作库表
<select id="selectShopConsumeAnaByObject" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from shop_consume_ana
<where>
<if test="shopConsumeAna.shopId != null ">
and shop_id=#{shopConsumeAna.shopId,jdbcType=INTEGER}
</if>
<if test="shopConsumeAna.dateId != null ">
and date_id=#{shopConsumeAna.dateId,jdbcType=INTEGER}
</if>
</where>
order by c_level_code asc
</select>
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 查询成功! | |
401 | 参数错误! | |
500 | 查询失败! |
返回
{
"alg": "SALT_MD5",
"code": 200,
"data":
{
"shop":
{
"0-100": 33.01,
"100-300": 25.01
},
"yoho":
{
"0-100": 33.01,
"100-300": 25.01
}
},
"md5": "0acd0d87c05f24a4b0d06e72c6f5efb9",
"message": "getConsumeAna success"
}