Commit 3b30c96a by zhangxingmin

push

parent 8bb8a003
...@@ -16,4 +16,9 @@ public class ApiRelObjectCategoryQueryRequest { ...@@ -16,4 +16,9 @@ public class ApiRelObjectCategoryQueryRequest {
* 分类表唯一业务ID查询列表 * 分类表唯一业务ID查询列表
*/ */
private List<String> categoryBizIdList; private List<String> categoryBizIdList;
/**
* 分类表分类编码列表
*/
private List<String> categoryCodeList;
} }
...@@ -22,6 +22,12 @@ ...@@ -22,6 +22,12 @@
#{item} #{item}
</foreach> </foreach>
</if> </if>
<if test="request.categoryCodeList != null and request.categoryCodeList.size > 0">
and c.code in
<foreach collection="request.categoryCodeList" item="item" index="index" open="(" separator="," close=")">
#{item}
</foreach>
</if>
and roc.is_deleted = 0 and roc.is_deleted = 0
</where> </where>
</select> </select>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment