addSort.md
2.23 KB
增加资讯分类资源
接口名: /guang/article/sort/addSort
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 | 长度限制 |
---|---|---|---|---|---|
parent_id | Integer | 1 | 父类分类 | 是 | 1-11 |
name | String | 流行 | 分类名称 | 是 | 1-6 |
status | Byte | 1 | 状态 | 否 | 0-1 |
orderBy | Byte | 3 | 排序 | 否 | 0-4 |
advertCode | String | 324dfasf | 广告码 | 否 | 0-32 |
对应SQL的操作库表
<insert id="insertSelective" parameterType="com.yohobuy.platform.dal.guang.model.ArticleSort">
insert into article_sort
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">
id,
</if>
<if test="parentId != null">
parent_id,
</if>
<if test="name != null">
name,
</if>
<if test="status != null">
status,
</if>
<if test="orderBy != null">
order_by,
</if>
<if test="advertCode != null">
advert_code,
</if>
<if test="createTime != null">
create_time,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">
#{id,jdbcType=INTEGER},
</if>
<if test="parentId != null">
#{parentId,jdbcType=INTEGER},
</if>
<if test="name != null">
#{name,jdbcType=VARCHAR},
</if>
<if test="status != null">
#{status,jdbcType=TINYINT},
</if>
<if test="orderBy != null">
#{orderBy,jdbcType=TINYINT},
</if>
<if test="advertCode != null">
#{advertCode,jdbcType=VARCHAR},
</if>
<if test="createTime != null">
#{createTime,jdbcType=INTEGER},
</if>
</trim>
</insert>
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 添加成功 | |
400 | 添加失败 |
返回
{
"code": "200",
"message":"增加成功"
}