add.md 1.41 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_folder (brand_id, brand_sort_name, brand_sort_ico, 
      parent_id, order_by, status, 
      shops_id, create_time, update_time
      )
    values (#{brandId,jdbcType=SMALLINT}, #{brandSortName,jdbcType=VARCHAR}, #{brandSortIco,jdbcType=VARCHAR}, 
      #{parentId,jdbcType=SMALLINT}, #{orderBy,jdbcType=SMALLINT}, #{status,jdbcType=TINYINT}, 
      #{shopsId,jdbcType=INTEGER}, #{createTime,jdbcType=INTEGER}, #{updateTime,jdbcType=INTEGER}
      )

eg:

 insert into brand_folder (brand_id, brand_sort_name, brand_sort_ico, 
      parent_id, order_by, status, 
      shops_id, create_time, update_time
      )
    values (1,'test','/bbr/demo.ico',0,1,1,234,unix_timestamp(),unix_timestamp());