Commit 1ec69c76 by zhangxingmin

push

parent ec49897c
...@@ -17,4 +17,9 @@ public class ApiInsuranceCompanyPageRequest extends PageDto { ...@@ -17,4 +17,9 @@ public class ApiInsuranceCompanyPageRequest extends PageDto {
* 保险公司表唯一业务ID列表 * 保险公司表唯一业务ID列表
*/ */
private List<String> insuranceCompanyBizIdList; private List<String> insuranceCompanyBizIdList;
/**
* 保险公司名称列表
*/
private List<String> fullNameList;
} }
...@@ -20,6 +20,12 @@ ...@@ -20,6 +20,12 @@
#{item} #{item}
</foreach> </foreach>
</if> </if>
<if test="request.fullNameList != null and request.fullNameList.size > 0">
and ic.full_name in
<foreach collection="request.fullNameList" item="item" index="index" open="(" separator="," close=")">
#{item}
</foreach>
</if>
and ic.is_deleted = 0 and ic.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