clearProductPool.md
863 Bytes
清空商品池
接口名:
/pool/clearProductPool
例子(http://localhost:8080/pool/clearProductPool)
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 | 长度限制 |
---|---|---|---|---|---|
id | number | 27 | 商品池ID | Y | 1024 |
对应SQL的操作库表
<delete id="deleteByPoolId" parameterType="java.lang.Integer" >
delete from product_pool_detail
where pool_id = #{poolId,jdbcType=INTEGER}
</delete>
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 清空成功! | |
401 | 参数错误! | |
500 | 清空失败! |
返回
{
"alg": "SALT_MD5",
"code": 200,
"data": [],
"md5": "64cdf0d30ba9174ddce76ecf71a91ad8",
"message": "clearProductPool success."
}