|
@@ -41,9 +41,18 @@
|
|
|
select gzname,luncishu,luncitime,jiangetime from g2_table_guize
|
|
|
<where>
|
|
|
1=1
|
|
|
- <if test="gzname != null and gzname != '' ">
|
|
|
- and gzname = #{gzname}
|
|
|
- </if>
|
|
|
+ <if test="gzname != null and gzname != '' ">
|
|
|
+ and gzname = #{gzname}
|
|
|
+ </if>
|
|
|
+ <if test="luncishu != null">
|
|
|
+ and luncishu = #{luncishu}
|
|
|
+ </if>
|
|
|
+ <if test="luncitime != null">
|
|
|
+ and luncitime = #{luncitime}
|
|
|
+ </if>
|
|
|
+ <if test="jiangetime != null">
|
|
|
+ and jiangetime = #{jiangetime}
|
|
|
+ </if>
|
|
|
</where>
|
|
|
</select>
|
|
|
|