|
|
@@ -52,7 +52,7 @@
|
|
|
and t.machine_name= #{machineName}
|
|
|
</if>
|
|
|
<if test="machineNameLike !=null and machineNameLike != ''">
|
|
|
- and t.machine_name concat('%', #{machineNameLike},'%')
|
|
|
+ and t.machine_name like concat('%', #{machineNameLike},'%')
|
|
|
</if>
|
|
|
<if test="roomId !=null and roomId != ''">
|
|
|
and t.room_id= #{roomId}
|
|
|
@@ -61,7 +61,7 @@
|
|
|
and t.room_name= #{roomName}
|
|
|
</if>
|
|
|
<if test="roomNameLike !=null and roomNameLike != ''">
|
|
|
- and t.room_name concat('%', #{roomNameLike},'%')
|
|
|
+ and t.room_name like concat('%', #{roomNameLike},'%')
|
|
|
</if>
|
|
|
<if test="curReadingTime !=null and curReadingTime != ''">
|
|
|
and t.cur_reading_time= #{curReadingTime}
|
|
|
@@ -82,7 +82,7 @@
|
|
|
and t.fee_config_name= #{feeConfigName}
|
|
|
</if>
|
|
|
<if test="feeConfigNameLike !=null and feeConfigNameLike != ''">
|
|
|
- and t.fee_config_name concat('%', #{feeConfigNameLike},'%')
|
|
|
+ and t.fee_config_name like concat('%', #{feeConfigNameLike},'%')
|
|
|
</if>
|
|
|
<if test="communityId !=null and communityId != ''">
|
|
|
and t.community_id= #{communityId}
|
|
|
@@ -187,7 +187,7 @@
|
|
|
and t.machine_name= #{machineName}
|
|
|
</if>
|
|
|
<if test="machineNameLike !=null and machineNameLike != ''">
|
|
|
- and t.machine_name concat('%', #{machineNameLike},'%')
|
|
|
+ and t.machine_name like concat('%', #{machineNameLike},'%')
|
|
|
</if>
|
|
|
<if test="roomId !=null and roomId != ''">
|
|
|
and t.room_id= #{roomId}
|
|
|
@@ -196,7 +196,7 @@
|
|
|
and t.room_name= #{roomName}
|
|
|
</if>
|
|
|
<if test="roomNameLike !=null and roomNameLike != ''">
|
|
|
- and t.room_name concat('%', #{roomNameLike},'%')
|
|
|
+ and t.room_name like concat('%', #{roomNameLike},'%')
|
|
|
</if>
|
|
|
<if test="curReadingTime !=null and curReadingTime != ''">
|
|
|
and t.cur_reading_time= #{curReadingTime}
|
|
|
@@ -217,7 +217,7 @@
|
|
|
and t.fee_config_name= #{feeConfigName}
|
|
|
</if>
|
|
|
<if test="feeConfigNameLike !=null and feeConfigNameLike != ''">
|
|
|
- and t.fee_config_name concat('%', #{feeConfigNameLike},'%')
|
|
|
+ and t.fee_config_name like concat('%', #{feeConfigNameLike},'%')
|
|
|
</if>
|
|
|
<if test="communityId !=null and communityId != ''">
|
|
|
and t.community_id= #{communityId}
|