|
@@ -67,6 +67,9 @@
|
|
|
<if test="dto.readRateBegin == null and dto.readRateEnd != null">
|
|
|
and #{dto.readRateEnd} >= rd.read_rate
|
|
|
</if>
|
|
|
+ <if test="dto.readRateBegin != null and dto.readRateEnd != null">
|
|
|
+ and rd.read_rate BETWEEN #{dto.readRateBegin} and #{dto.readRateEnd}
|
|
|
+ </if>
|
|
|
<include refid="permissionCondition"></include>
|
|
|
</select>
|
|
|
|