close.md 688 Bytes

关闭品牌款型系列接口(restfull 风格)

接口名: /brandSeries/close

入参


属性名称 类型 例子 说明 是否必填
param int 1 id yes

返回

{
  "code": 200,--若失败为500
  "data": [ ],
  "md5": "dfc645ecb0c66c8d4771dd2a749047e8",
  "message": "success"
}

对应SQL的操作库表

   update brand_series
    set 
      status = #{status,jdbcType=TINYINT}
    where id = #{id,jdbcType=INTEGER}

eg:

 update brand_series
    set status = 0
    where id = 21