|
|
@ -16,10 +16,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<result property="terminalNum" column="terminal_num" />
|
|
|
|
<result property="terminalNum" column="terminal_num" />
|
|
|
|
<result property="netRecoverdepart" column="net_recoverdepart" />
|
|
|
|
<result property="netRecoverdepart" column="net_recoverdepart" />
|
|
|
|
<result property="part" column="part" />
|
|
|
|
<result property="part" column="part" />
|
|
|
|
|
|
|
|
<result property="deptId" column="dept_id" />
|
|
|
|
</resultMap>
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
<sql id="selectTdPropertyNetVo">
|
|
|
|
<sql id="selectTdPropertyNetVo">
|
|
|
|
select net_id, net_depart, net_user, net_date, framework, area, province, net_miji, terminal_num, net_recoverdepart, part from td_property_net
|
|
|
|
select net_id, net_depart, net_user, net_date, framework, area, province, net_miji, terminal_num, net_recoverdepart, part,dept_id from td_property_net d
|
|
|
|
</sql>
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectTdPropertyNetList" parameterType="TdPropertyNet" resultMap="TdPropertyNetResult">
|
|
|
|
<select id="selectTdPropertyNetList" parameterType="TdPropertyNet" resultMap="TdPropertyNetResult">
|
|
|
@ -35,6 +36,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<if test="terminalNum != null and terminalNum != ''"> and terminal_num = #{terminalNum}</if>
|
|
|
|
<if test="terminalNum != null and terminalNum != ''"> and terminal_num = #{terminalNum}</if>
|
|
|
|
<if test="netRecoverdepart != null and netRecoverdepart != ''"> and net_recoverdepart = #{netRecoverdepart}</if>
|
|
|
|
<if test="netRecoverdepart != null and netRecoverdepart != ''"> and net_recoverdepart = #{netRecoverdepart}</if>
|
|
|
|
<if test="part != null and part != ''"> and part = #{part}</if>
|
|
|
|
<if test="part != null and part != ''"> and part = #{part}</if>
|
|
|
|
|
|
|
|
<!-- 数据范围过滤 -->
|
|
|
|
|
|
|
|
${params.dataScope}
|
|
|
|
</where>
|
|
|
|
</where>
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
@ -57,6 +60,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<if test="terminalNum != null">terminal_num,</if>
|
|
|
|
<if test="terminalNum != null">terminal_num,</if>
|
|
|
|
<if test="netRecoverdepart != null">net_recoverdepart,</if>
|
|
|
|
<if test="netRecoverdepart != null">net_recoverdepart,</if>
|
|
|
|
<if test="part != null">part,</if>
|
|
|
|
<if test="part != null">part,</if>
|
|
|
|
|
|
|
|
<if test="deptId != null">dept_id,</if>
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
<if test="netId != null">#{netId},</if>
|
|
|
|
<if test="netId != null">#{netId},</if>
|
|
|
@ -70,6 +74,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<if test="terminalNum != null">#{terminalNum},</if>
|
|
|
|
<if test="terminalNum != null">#{terminalNum},</if>
|
|
|
|
<if test="netRecoverdepart != null">#{netRecoverdepart},</if>
|
|
|
|
<if test="netRecoverdepart != null">#{netRecoverdepart},</if>
|
|
|
|
<if test="part != null">#{part},</if>
|
|
|
|
<if test="part != null">#{part},</if>
|
|
|
|
|
|
|
|
<if test="deptId != null">#{deptId},</if>
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
|
</insert>
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
|
@ -86,6 +91,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<if test="terminalNum != null">terminal_num = #{terminalNum},</if>
|
|
|
|
<if test="terminalNum != null">terminal_num = #{terminalNum},</if>
|
|
|
|
<if test="netRecoverdepart != null">net_recoverdepart = #{netRecoverdepart},</if>
|
|
|
|
<if test="netRecoverdepart != null">net_recoverdepart = #{netRecoverdepart},</if>
|
|
|
|
<if test="part != null">part = #{part},</if>
|
|
|
|
<if test="part != null">part = #{part},</if>
|
|
|
|
|
|
|
|
<if test="deptId != null">dept_id = #{deptId},</if>
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
|
where net_id = #{netId}
|
|
|
|
where net_id = #{netId}
|
|
|
|
</update>
|
|
|
|
</update>
|
|
|
|