open.md
754 Bytes
打开品牌款型系列接口
接口名:
/brandSeries/open
{id} 具体的品牌款型系列id值,数据类型:int 例:/brandSeries/open
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 |
---|---|---|---|---|
param | int | 14 | -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 = 1
where id = 21