saveNetSaleSearchKeys.md 1.03 KB

保存网销的搜索词

接口名: /product/saveNetSaleSearchKeys

方法

POST JSONRAW

入参


属性名称 类型 例子 说明 是否必填 长度限制
productSkn number 商品skn Y 10
searchKeys 字符串 多个用逗号隔开 Y 200

对应SQL的操作库表

  <insert id="insertSearchKeys" parameterType="com.yohobuy.platform.dal.product.model.ProductKeywords" >
    insert into product_keywords (product_id, product_keyword)
    values (#{productId,jdbcType=INTEGER}, #{productKeyword,jdbcType=VARCHAR})
     ON DUPLICATE KEY UPDATE product_keyword=#{productKeyword,jdbcType=VARCHAR}
  </insert>

错误编码


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

返回

{
  "code": 200,
  "data": [],
  "md5": "d751713988987e9331980363e24189ce",
  "message": "save netSale SearchKeys success."
}