|
@@ -94,6 +94,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="czsj" column="czsj" />
|
|
|
<result property="jglb" column="jglb" />
|
|
|
<result property="zyrq" column="zyrq" />
|
|
|
+ <result property="isGbmy" column="is_gbmy" />
|
|
|
<result property="yljgzyxkzh" column="yljgzyxkzh" />
|
|
|
<result property="chxpfrq" column="chxpfrq" />
|
|
|
<result property="ffssmj" column="ffssmj" />
|
|
@@ -166,6 +167,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="jgmc != null and jgmc != ''"> and jgmc like concat('%', #{jgmc}, '%')</if>
|
|
|
<if test="tyshxydm != null and tyshxydm != ''"> and tyshxydm like concat('%', #{tyshxydm}, '%')</if>
|
|
|
<if test="isBa != null and isBa != ''"> and is_ba = #{isBa}</if>
|
|
|
+ <if test="isGbmy != null and isGbmy != ''"> and is_gbmy = #{isGbmy}</if>
|
|
|
+ <if test='isGbmb == "01"'> and xbzt in ('01','02','03','06','07','08','09','10') </if>
|
|
|
+ <if test='isGbmb == "00"'> and xbzt in ('04','05') </if>
|
|
|
<if test="sczt != null and sczt != ''"> and sczt = #{sczt}</if>
|
|
|
</where>
|
|
|
</select>
|
|
@@ -176,6 +180,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="xzqhId != null and xzqhId != ''"> and ssxzqh like concat( #{xzqhId}, '%')</if>
|
|
|
<if test="jgmc != null and jgmc != ''"> and jgmc like concat('%', #{jgmc}, '%')</if>
|
|
|
<if test="tyshxydm != null and tyshxydm != ''"> and tyshxydm like concat( '%',#{tyshxydm},'%' ) </if>
|
|
|
+ <if test="isGbmy != null and isGbmy != ''"> and is_gbmy = #{isGbmy}</if>
|
|
|
+ <if test='isGbmb == "01"'> and xbzt in ('01','02','03','06','07','08','09','10') </if>
|
|
|
+ <if test='isGbmb == "00"'> and xbzt in ('04','05') </if>
|
|
|
<if test="params.beginBasj != null and params.beginBasj != '' and params.endBasj != null and params.endBasj != ''"> and basj between #{params.beginBasj} and #{params.endBasj}</if>
|
|
|
<if test="params.beginDwjlrq != null and params.beginDwjlrq != '' and params.endDwjlrq != null and params.endDwjlrq != ''"> and jlrq between #{params.beginDwjlrq} and #{params.endDwjlrq}</if>
|
|
|
<if test="sczt != null and sczt != ''">
|