getSortList.md
1.33 KB
获取所有分类接口
接口名:
/guang/article/getSortList
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 | 长度限制 |
---|---|---|---|---|---|
parentId | int | 0 | 上级分类id | 否 | 0-11 |
对应SQL的操作库表
<select id="selectByPidAndStatus" resultMap="IdNameMap">
select id,name
from article_sort where 1=1
<if test="parentId != null and parentId != ''">
and parent_id = #{parentId,jdbcType=INTEGER}
</if>
<if test="status != null and status != ''">
and status = #{status,jdbcType=VARCHAR}
</if>
order by order_by DESC
</select>
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 操作成功 |
返回
{
"code": 200,
"data": [
{
"id": "1",
"text": "话题"
},
{
"id": "2",
"text": "搭配"
},
{
"id": "3",
"text": "潮人"
},
{
"id": "4",
"text": "潮品"
},
{
"id": "5",
"text": "专题"
}
],
"message": "操作成功"
}