saveProductDesc.md
1.01 KB
新增商品描述
接口名:
/product/saveProductDesc
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 | 长度限制 |
---|---|---|---|---|---|
productSkn | number | 50018101 | skn | 必填 | 10 |
productDesc | string | 描述信息 | 必填 | 无 |
对应SQL的操作库表
<insert id="insertProductDesc" parameterType="com.yohobuy.platform.dal.product.model.YhProductIntro" >
insert into product_intro (product_id, product_intro)
values (#{productId,jdbcType=INTEGER}, #{productIntro,jdbcType=LONGVARCHAR}) ON DUPLICATE KEY UPDATE product_intro=#{productIntro,jdbcType=LONGVARCHAR}
</insert>
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 添加成功! | |
400 | 操作失败! |
返回
{
"code": 200,
"data": [],
"md5": "d751713988987e9331980363e24189ce",
"message": "save netSale product desc success."
}