Compare commits

...

2 Commits

2 changed files with 2 additions and 0 deletions

View File

@@ -69,6 +69,7 @@
<if test="params.beginOutDate != null and params.endOutDate != null"> <if test="params.beginOutDate != null and params.endOutDate != null">
and out_date between #{params.beginOutDate} and #{params.endOutDate} and out_date between #{params.beginOutDate} and #{params.endOutDate}
</if> </if>
<if test="status != null and status != ''">and status = #{status}</if>
</where> </where>
</select> </select>

View File

@@ -41,6 +41,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="params.beginOutDt != null and params.endOutDt != null"> <if test="params.beginOutDt != null and params.endOutDt != null">
and out_dt between #{params.beginOutDt} and #{params.endOutDt} and out_dt between #{params.beginOutDt} and #{params.endOutDt}
</if> </if>
<if test="stat != null and stat != ''">and stat = #{stat}</if>
</where> </where>
</select> </select>