addResSort.md
1.4 KB
新增资源分类
接口名: `/resources/addResSort
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 | 长度限制 |
---|---|---|---|---|---|
sortName | string | ipad | 分类名称 | 是 | 50 |
platformId | int | 1 | 平台编号 | 否 | 11 |
status | int | 1 | 是否启用 | 是 | 1 |
对应SQL的操作库表
<insert id="insertResourcesSort" parameterType="com.yohobuy.platform.dal.cms.model.ResourcesSort" >
insert into resources_sort
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="sortName != null" >
sort_name,
</if>
<if test="platformId != null" >
platform_id,
</if>
create_time,
<if test="status != null" >
status,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="sortName != null" >
#{sortName,jdbcType=VARCHAR},
</if>
<if test="platformId != null" >
#{platformId,jdbcType=INTEGER},
</if>
UNIX_TIMESTAMP(),
<if test="status != null" >
#{status,jdbcType=TINYINT},
</if>
</trim>
</insert>
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 添加成功 | |
400 | 分类名称不能为空! | |
404 | 平台id不能为空! | |
500 | 新增资源分类失败! |
返回
{
"code": 200,
"data": [],
"md5": "d751713988987e9331980363e24189ce",
"message": "添加成功."
}