updateSCLabel.md
1.81 KB
更新销售类目的标签接口
接口名:
/salesCategoryLabel/updateSCLabel
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 | 长度限制 |
---|---|---|---|---|---|
id | String | 1 | id | 是 | 5 |
labelName | String | 袖长 | 标签名称 | 否 | 50 |
labelId | string | 标签ID | 否 | 5 | |
categoryId | string | 关联的销售类目id | 否 | 5 | |
orderBy | string | 0 | 排序 | 否 | 5 |
status | string | 0 | 销售类目状态1:开启 0:关闭 | 否 | 5 |
对应SQL的操作库表
<update id="updateByPrimaryKeySelective" parameterType="com.yohobuy.platform.dal.product.model.SalesCategoryLabel" >
update sales_category_label
<set >
<if test="labelName != null" >
label_name = #{labelName,jdbcType=VARCHAR},
</if>
<if test="labelId != null" >
label_id = #{labelId,jdbcType=VARCHAR},
</if>
<if test="categoryId != null" >
category_id = #{categoryId,jdbcType=INTEGER},
</if>
<if test="status != null" >
status = #{status,jdbcType=INTEGER},
</if>
<if test="createTime != null" >
create_time = #{createTime,jdbcType=INTEGER},
</if>
<if test="updateTime != null" >
update_time = #{updateTime,jdbcType=INTEGER},
</if>
<if test="orderBy != null" >
order_by = #{orderBy,jdbcType=INTEGER},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
响应码
响应码code | 消息 | 说明 |
---|---|---|
200 | updateCategoryLabel success | |
400 | 类目id丢失/修改参数不合法 |
返回
{
"code": 200,
"data": [],
"md5": "d751713988987e9331980363e24189ce",
"message": "updateSCLabel success."
}