checkLimitCodeByBatchNo.md
1.18 KB
根据batchNo查询是否存在接口
接口名:
/limitCode/getLimitCodeByBatchNo
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 | 长度限制 |
---|---|---|---|---|---|
batchNo | String | 201602241947 | 限购码批次号 | 是 | 1~14 |
对应SQL的操作库表
<select id="getLimitCodeAttachByBatchNo" resultMap="AttachBaseResultMap" >
select
<include refid="Rename_Base_Column_List" />,
group_concat(b.sku separator ';') as skus,
group_concat(b.sku_limit_times separator ';')as skuTimes
from limit_code a left join limit_code_sku b
on a.batchNo=b.batchNo and a.limit_skn=b.skn
where a.batchNo = #{batchNo, jdbcType=VARCHAR}
</select>
响应码
响应码code | 消息 | 说明 |
---|---|---|
200 | 限购码批次存在/限购码批次不存在 | |
400 | 参数不能为空. |
返回
{
"code": 200,
"data": {
true
},
"md5": "e3e90eabad29076e86c01fd7407bc623",
"message": "限购码批次存在."
}