|
@@ -238,10 +238,10 @@
|
|
|
<select id="queryZone" parameterType="java.util.Map" resultType="com.cloudcross.ssp.model.Zone">
|
|
|
select tz.id id,tz.name name from t_zone tz where tz.status != -1
|
|
|
<if test="operatorId != null and operatorId != ''">
|
|
|
- and tz.operator_id in (#{operatorId})
|
|
|
+ and tz.operator_id in (${operatorId})
|
|
|
</if>
|
|
|
<if test="position != null and position != ''">
|
|
|
- and tz.position in (#{position})
|
|
|
+ and tz.position in (${position})
|
|
|
</if>
|
|
|
</select>
|
|
|
|