insertCollocation.md
1.26 KB
添加搭配信息
接口名:
/collocation/insertCollocation
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 | 长度限制 |
---|---|---|---|---|---|
imageUrl | 字符串 | 图片URL | Y | 255 | |
content | 字符串 | 搭配介绍 | Y | 255 | |
orderBy | number | 顺序值 | 从1开始 | Y | |
infoStr | json字符串 | 搭配的方位信息 | Y | 无 |
对应SQL的操作库表
<insert id="insert" parameterType="com.yohobuy.platform.dal.product.model.ProductCollocation" >
insert into product_collocation (id, product_id, image_url,
content, order_by, create_time,
info)
values (#{id,jdbcType=INTEGER}, #{productId,jdbcType=INTEGER}, #{imageUrl,jdbcType=VARCHAR},
#{content,jdbcType=VARCHAR}, #{orderBy,jdbcType=TINYINT}, #{createTime,jdbcType=INTEGER},
#{info,jdbcType=LONGVARCHAR})
</insert>
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 添加成功! | |
400 | 操作失败! | |
500 | 操作失败! |
返回
{
"code": 200,
"data": [],
"md5": "d751713988987e9331980363e24189ce",
"message": "update collocation success."
}