add.md 1.38 KB

品牌款型系列管理接口服务定义


添加品牌款型系列接口

接口名: /brandSeries/add

入参


属性名称 类型 例子 说明 是否必填
seriesName string 羽绒服系列 名称
shopsId int 1 店铺id
brandId int 1 店铺id下的某个品牌id
type int 1 1:"品牌款型";2:"品牌系列"
orderBy int 1 排序值

返回

{
  "code":200,--若失败为500
  "message":"success"
}

对应SQL的操作库表

  insert into brand_series (shops_id, brand_id, series_name, 
      parent_id, order_by, status, bannar_img,  create_time, update_time)
    values (#{shopsId,jdbcType=INTEGER}, #{brandId,jdbcType=INTEGER}, #{seriesName,jdbcType=VARCHAR}, 
      #{parentId,jdbcType=INTEGER}, #{orderBy,jdbcType=SMALLINT}, #{status,jdbcType=TINYINT}, 
      #{bannarImg,jdbcType=VARCHAR},#{createTime,jdbcType=INTEGER},
      #{updateTime,jdbcType=INTEGER})

eg:

 insert into brand_series (shops_id, brand_id, series_name, 
      parent_id, order_by, status, bannar_img,  create_time, update_time)
    values (143, 214, 'test-seriesName', 
      0, 1, 1, 
      '/01/02/img.jpg',unix_timestamp,
      unix_timestamp)