getUserAna.md 1.5 KB

用户画像--人群分布--会员分布

接口名: /chart/getUserAna 例子(http://localhost:8080/chart/getUserAna)

方法

POST JSONRAW

入参


属性名称 类型 例子 说明 是否必填 长度限制
shopId number 16 店铺ID Y
dateId number 12 时间点 Y

对应SQL的操作库表

    <select id="selectShopUserAnaByObject" resultMap="BaseResultMap">
        select
        <include refid="Base_Column_List"/>
        from shop_user_ana
        <where>
            <if test="shopUserAna.shopId != null ">
                and shop_id=#{shopUserAna.shopId,jdbcType=INTEGER}
            </if>
            <if test="shopUserAna.dateId != null ">
                and date_id=#{shopUserAna.dateId,jdbcType=INTEGER}
            </if>
        </where>
        order by user_level asc
    </select>

错误编码


错误码code 消息 说明
200 查询成功!
401 参数错误!
500 查询失败!

返回


    {
        "alg": "SALT_MD5",
        "code": 200,
        "data":
        {
            "shop":
            {
                "普通": 52.01,
                "银卡": 87.21
            },
            "yoho":
            {
                "普通": 52.01,
                "银卡": 87.21
            }
        },
        "md5": "3cb07b440e78b30cdd85e3057ad93015",
        "message": "getUserAna success"
    }