|
|
|
@ -18,10 +18,11 @@
|
|
|
|
|
<result property="areaId" column="area_id" />
|
|
|
|
|
<result property="propertyNum" column="property_num" />
|
|
|
|
|
<result property="secretsType" column="secrets_type" />
|
|
|
|
|
<result property="deptId" column="dept_id" />
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="selectTdPropertyManagerVo">
|
|
|
|
|
select use_id, use_depart, user_name, use_date, framework_id, recover_depart, recover_name, recover_date, shemichengdu, part, area_id, property_num,secrets_type from td_property_manager
|
|
|
|
|
select use_id, use_depart, user_name, use_date, framework_id, recover_depart, recover_name, recover_date, shemichengdu, part, area_id, property_num,secrets_type,dept_id from td_property_manager d
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
<select id="selectTdPropertyManagerList" parameterType="TdPropertyManager" resultMap="TdPropertyManagerResult">
|
|
|
|
@ -40,6 +41,8 @@
|
|
|
|
|
<if test="areaId != null and areaId != ''"> and area_id = #{areaId}</if>
|
|
|
|
|
<if test="propertyNum != null "> and property_num = #{propertyNum}</if>
|
|
|
|
|
<if test="secretsType != null and secretsType != '' " > and secrets_type = #{secretsType}</if>
|
|
|
|
|
<!-- 数据范围过滤 -->
|
|
|
|
|
${params.dataScope}
|
|
|
|
|
</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
@ -64,6 +67,7 @@
|
|
|
|
|
<if test="areaId != null">area_id,</if>
|
|
|
|
|
<if test="propertyNum != null">property_num,</if>
|
|
|
|
|
<if test="secretsType != null">secrets_type,</if>
|
|
|
|
|
<if test="deptId != null">dept_id,</if>
|
|
|
|
|
</trim>
|
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
|
<if test="useId != null">#{useId},</if>
|
|
|
|
@ -79,6 +83,7 @@
|
|
|
|
|
<if test="areaId != null">#{areaId},</if>
|
|
|
|
|
<if test="propertyNum != null">#{propertyNum},</if>
|
|
|
|
|
<if test="secretsType != null">#{secretsType},</if>
|
|
|
|
|
<if test="deptId != null">#{deptId},</if>
|
|
|
|
|
</trim>
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
@ -97,6 +102,7 @@
|
|
|
|
|
<if test="areaId != null">area_id = #{areaId},</if>
|
|
|
|
|
<if test="propertyNum != null">property_num = #{propertyNum},</if>
|
|
|
|
|
<if test="secretsType != null">secrets_type = #{secretsType},</if>
|
|
|
|
|
<if test="deptId != null">dept_id = #{deptId},</if>
|
|
|
|
|
</trim>
|
|
|
|
|
where use_id = #{useId}
|
|
|
|
|
</update>
|
|
|
|
|