saveBrandRelation.md 1.19 KB

品牌关联

接口名: /product/saveBrandRelation

方法

POST JSONRAW

入参


属性名称 类型 例子 说明 是否必填 长度限制
productSkn 数字 skn 必填 10
brandRelationList json字符串 品牌Id列表 必填 1000

对应SQL的操作库表

  <delete id="delBrandRelation" parameterType="java.lang.Integer" >
    delete from product_brand_relation
    where product_skn = #{productSkn, jdbcType=INTEGER}
  </delete>

  <insert id="insertBatch">
    insert into product_brand_relation (product_skn, brand_id, product_id)
    values
    <foreach collection="brandRelationList" item="item" index="index" separator="," >  
       (#{productSkn,jdbcType=INTEGER}, #{item,jdbcType=SMALLINT}, #{productId,jdbcType=INTEGER})
    </foreach>
  </insert>

错误编码


错误码code 消息 说明
200 添加成功!
400 操作失败!

返回

{
  "code": 200,
  "data": [],
  "md5": "d751713988987e9331980363e24189ce",
  "message": "保存品牌关系成功"
}