queryAll4Select.md
1.52 KB
查询品牌款型系列列表
接口名:
/brandSeries/queryAll4Select
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 | 长度限制 |
---|---|---|---|---|---|
type | 数字型 | 1获取2 | 1代表品牌款型 2代表品牌系列 | 必填 | 1 |
status | 数字型 | 1 | 1代表正常状态 | 必填 | 1 |
shopsId | 数字型 | 15 | 商品所属店铺Id | 必填 | 5 |
brandId | 数字型 | 175 | 商品所属品牌Id | 必填 | 5 |
对应SQL的操作库表
<select id="selectByEqualsMultiCondtion" resultMap="BaseResultMap" parameterType="com.yohobuy.platform.dal.product.model.BrandFolder">
select
<include refid="Base_Column_List" />
from brand_folder
where 1=1
<if test="brandId != null" >
and brand_id = #{brandId,jdbcType=SMALLINT}
</if>
<if test="brandSortName != null" >
and brand_sort_name = #{brandSortName,jdbcType=VARCHAR}
</if>
<if test="status != null" >
and status = #{status,jdbcType=TINYINT}
</if>
<if test="shopsId != null" >
and shops_id = #{shopsId,jdbcType=INTEGER}
</if>
order by update_time desc, create_time desc
</select>
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 操作成功! | |
400 | 操作失败! | |
500 | 操作失败! |
返回
{
"code": 200,
"data": [],
"md5": "d751713988987e9331980363e24189ce",
"message": "成功"
}