updateResSort.md
1.09 KB
修改资源分类
接口名: `/resources/updateResSort
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 | 长度限制 |
---|---|---|---|---|---|
sortId | int | 2 | 分类编号 | 是 | 11 |
sortName | string | 资源分类名称 | ipad | 是 | 50 |
platformId | int | 平台id | 5 | 是 | 11 |
status | byte | 状态 | 是 | 1 |
对应SQL的操作库表
<update id="updateByPrimaryKeySelective" parameterType="com.yohobuy.platform.dal.cms.model.ResourcesSort" >
update resources_sort
<set >
<if test="sortName != null" >
sort_name = #{sortName,jdbcType=VARCHAR},
</if>
<if test="platformId != null" >
platform_id = #{platformId,jdbcType=INTEGER},
</if>
<if test="status != null" >
status = #{status,jdbcType=TINYINT},
</if>
</set>
where sort_id = #{sortId,jdbcType=INTEGER}
</update>
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 操作成功 | |
500 | 更新资源分类失败 |
返回
{
"code": 200,
"data": [],
"md5": "d751713988987e9331980363e24189ce",
"message": "修改成功."
}