getList.md
1.48 KB
plustar分类列表查询
接口名: '/guang/plustarcategory/getList'
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 | 范围 |
---|---|---|---|---|---|
status | int | 1 | 开启状态 | 否 | 0-1 |
对应SQL的操作库表
<select id="selectCategoryByStatus" resultMap="BaseResultMap" >
select
<include refid="Base_Column_List" />
from plustar_category
<if test="status != null">
where status = #{status,jdbcType=TINYINT}
</if>
<if test="idOrName != null and idOrName != ''">
and id like CONCAT('%',#{idOrName},'%')
or category_name like CONCAT('%',#{idOrName},'%')
</if>
order by id DESC
</select>
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 操作成功 |
返回
{
"code":200,
"message":"操作成功",
"data": {
"list": [
{
"id": 4, //分类id
"categoryName": "设计新潮", //分类名称
"contentCode":"b714c25f503ab4e6bc143a42d1404cbb",//资源位码(head)
"contentCodeFoot":"f5d0b31f4ce77e6f21f47215a88ed22d",//资源位码(foot)
"createTime": 1447929410, //创建时间
"status": 1 //状态
}
]
}
}