|
|
|
|
@ -9,7 +9,7 @@
|
|
|
|
|
<result property="xqId" column="xq_id" />
|
|
|
|
|
<result property="xqName" column="xq_name" />
|
|
|
|
|
<result property="ldName" column="ld_name" />
|
|
|
|
|
<result property="xqType" column="xq_type" />
|
|
|
|
|
<result property="ldType" column="ld_type" />
|
|
|
|
|
<result property="ldSort" column="ld_sort" />
|
|
|
|
|
<result property="ldjg" column="ldjg" />
|
|
|
|
|
<result property="qnfs" column="qnfs" />
|
|
|
|
|
@ -27,7 +27,7 @@
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="selectSzxcLdInfoVo">
|
|
|
|
|
select id, xq_id, xq_name, ld_name, xq_type, ld_sort, ldjg, qnfs, lc_num, unit_num, hu_num, ld_describe, create_by, create_time, update_by, update_time, dept_id, dept_name, user_id from szxc_ld_info
|
|
|
|
|
select id, xq_id, xq_name, ld_name, ld_type, ld_sort, ldjg, qnfs, lc_num, unit_num, hu_num, ld_describe, create_by, create_time, update_by, update_time, dept_id, dept_name, user_id from szxc_ld_info
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
<select id="selectSzxcLdInfoList" parameterType="SzxcLdInfo" resultMap="SzxcLdInfoResult">
|
|
|
|
|
@ -36,7 +36,7 @@
|
|
|
|
|
<if test="xqId != null "> and xq_id = #{xqId}</if>
|
|
|
|
|
<if test="xqName != null and xqName != ''"> and xq_name like concat('%', #{xqName}, '%')</if>
|
|
|
|
|
<if test="ldName != null and ldName != ''"> and ld_name like concat('%', #{ldName}, '%')</if>
|
|
|
|
|
<if test="xqType != null and xqType != ''"> and xq_type = #{xqType}</if>
|
|
|
|
|
<if test="ldType != null and ldType != ''"> and ld_type = #{ldType}</if>
|
|
|
|
|
<if test="ldSort != null and ldSort != ''"> and ld_sort = #{ldSort}</if>
|
|
|
|
|
<if test="ldjg != null and ldjg != ''"> and ldjg = #{ldjg}</if>
|
|
|
|
|
<if test="qnfs != null and qnfs != ''"> and qnfs = #{qnfs}</if>
|
|
|
|
|
@ -61,7 +61,7 @@
|
|
|
|
|
<if test="xqId != null">xq_id,</if>
|
|
|
|
|
<if test="xqName != null">xq_name,</if>
|
|
|
|
|
<if test="ldName != null">ld_name,</if>
|
|
|
|
|
<if test="xqType != null">xq_type,</if>
|
|
|
|
|
<if test="ldType != null">ld_type,</if>
|
|
|
|
|
<if test="ldSort != null">ld_sort,</if>
|
|
|
|
|
<if test="ldjg != null">ldjg,</if>
|
|
|
|
|
<if test="qnfs != null">qnfs,</if>
|
|
|
|
|
@ -81,7 +81,7 @@
|
|
|
|
|
<if test="xqId != null">#{xqId},</if>
|
|
|
|
|
<if test="xqName != null">#{xqName},</if>
|
|
|
|
|
<if test="ldName != null">#{ldName},</if>
|
|
|
|
|
<if test="xqType != null">#{xqType},</if>
|
|
|
|
|
<if test="ldType != null">#{ldType},</if>
|
|
|
|
|
<if test="ldSort != null">#{ldSort},</if>
|
|
|
|
|
<if test="ldjg != null">#{ldjg},</if>
|
|
|
|
|
<if test="qnfs != null">#{qnfs},</if>
|
|
|
|
|
@ -105,7 +105,7 @@
|
|
|
|
|
<if test="xqId != null">xq_id = #{xqId},</if>
|
|
|
|
|
<if test="xqName != null">xq_name = #{xqName},</if>
|
|
|
|
|
<if test="ldName != null">ld_name = #{ldName},</if>
|
|
|
|
|
<if test="xqType != null">xq_type = #{xqType},</if>
|
|
|
|
|
<if test="ldType != null">ld_type = #{ldType},</if>
|
|
|
|
|
<if test="ldSort != null">ld_sort = #{ldSort},</if>
|
|
|
|
|
<if test="ldjg != null">ldjg = #{ldjg},</if>
|
|
|
|
|
<if test="qnfs != null">qnfs = #{qnfs},</if>
|
|
|
|
|
|