updateGoodsStatus.md
888 Bytes
上下架productskc
接口名:
/product/updateGoodsStatus
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 | 长度限制 |
---|---|---|---|---|---|
productSkc | number | 商品skc | 必填 | 10 | |
targetStatus | number | 目标状态 0 代表下架, 1 代表上架 | 必填 | 1 |
对应SQL的操作库表
<update id="updateStatusBySkc">
update goods set
status = #{status,jdbcType=TINYINT}
where product_skc = #{productSkc,jdbcType=INTEGER}
</update>
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 添加成功! | |
400 | 操作失败! |
返回
{
"code": 200,
"data": [],
"md5": "d751713988987e9331980363e24189ce",
"message": "update status success."
}