|
|
|
@@ -70,7 +70,10 @@ |
|
|
|
</if> |
|
|
|
<if test=" null != updateDate "> |
|
|
|
and `update_date` = #{updateDate} |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test=" null != startdate and null!=enddate"> |
|
|
|
and `create_date` between #{startdate} and #{enddate} |
|
|
|
</if> |
|
|
|
<if test=" null != ids "> |
|
|
|
and id in |
|
|
|
<foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")"> |
|
|
|
@@ -166,6 +169,9 @@ |
|
|
|
<if test=" null != updateDate "> |
|
|
|
and cs.`update_date` = #{updateDate} |
|
|
|
</if> |
|
|
|
<if test=" null != startdate and null!=enddate"> |
|
|
|
and cs.`create_date` between #{startdate} and #{enddate} |
|
|
|
</if> |
|
|
|
<if test=" null != ids "> |
|
|
|
and cs.id in |
|
|
|
<foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")"> |
|
|
|
|