|
|
@@ -383,6 +383,12 @@
|
|
|
<if test="ownerTypeCd !=null and ownerTypeCd != ''">
|
|
|
and t.owner_type_cd= #{ownerTypeCd}
|
|
|
</if>
|
|
|
+ <if test="ownerTypeCds != null ">
|
|
|
+ and t.owner_type_cd in
|
|
|
+ <foreach collection="ownerTypeCds" item="item" open="(" close=")" separator=",">
|
|
|
+ #{item}
|
|
|
+ </foreach>
|
|
|
+ </if>
|
|
|
|
|
|
|
|
|
</select>
|
|
|
@@ -432,6 +438,12 @@
|
|
|
<if test="ownerTypeCd !=null and ownerTypeCd != ''">
|
|
|
and t.owner_type_cd= #{ownerTypeCd}
|
|
|
</if>
|
|
|
+ <if test="ownerTypeCds != null ">
|
|
|
+ and t.owner_type_cd in
|
|
|
+ <foreach collection="ownerTypeCds" item="item" open="(" close=")" separator=",">
|
|
|
+ #{item}
|
|
|
+ </foreach>
|
|
|
+ </if>
|
|
|
|
|
|
|
|
|
</select>
|
|
|
@@ -492,6 +504,12 @@
|
|
|
<if test="ownerTypeCd !=null and ownerTypeCd != ''">
|
|
|
and t.owner_type_cd= #{ownerTypeCd}
|
|
|
</if>
|
|
|
+ <if test="ownerTypeCds != null ">
|
|
|
+ and t.owner_type_cd in
|
|
|
+ <foreach collection="ownerTypeCds" item="item" open="(" close=")" separator=",">
|
|
|
+ #{item}
|
|
|
+ </foreach>
|
|
|
+ </if>
|
|
|
<if test="page != -1 and page != null ">
|
|
|
limit #{page}, #{row}
|
|
|
</if>
|