|
|
|
@ -17,10 +17,11 @@
|
|
|
|
|
<result property="part" column="part" />
|
|
|
|
|
<result property="areaId" column="area_id" />
|
|
|
|
|
<result property="propertyNum" column="property_num" />
|
|
|
|
|
<result property="secretsType" column="secrets_type" />
|
|
|
|
|
</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 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 from td_property_manager
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
<select id="selectTdPropertyManagerList" parameterType="TdPropertyManager" resultMap="TdPropertyManagerResult">
|
|
|
|
@ -38,6 +39,7 @@
|
|
|
|
|
<if test="part != null and part != ''"> and part = #{part}</if>
|
|
|
|
|
<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 secrets_type = #{secretsType}</if>
|
|
|
|
|
</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
@ -61,6 +63,7 @@
|
|
|
|
|
<if test="part != null">part,</if>
|
|
|
|
|
<if test="areaId != null">area_id,</if>
|
|
|
|
|
<if test="propertyNum != null">property_num,</if>
|
|
|
|
|
<if test="secretsType != null">secrets_type,</if>
|
|
|
|
|
</trim>
|
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
|
<if test="useId != null">#{useId},</if>
|
|
|
|
@ -75,6 +78,7 @@
|
|
|
|
|
<if test="part != null">#{part},</if>
|
|
|
|
|
<if test="areaId != null">#{areaId},</if>
|
|
|
|
|
<if test="propertyNum != null">#{propertyNum},</if>
|
|
|
|
|
<if test="secretsType != null">#{secretsType},</if>
|
|
|
|
|
</trim>
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
@ -92,6 +96,7 @@
|
|
|
|
|
<if test="part != null">part = #{part},</if>
|
|
|
|
|
<if test="areaId != null">area_id = #{areaId},</if>
|
|
|
|
|
<if test="propertyNum != null">property_num = #{propertyNum},</if>
|
|
|
|
|
<if test="secretsType != null">secrets_type = #{secretsType},</if>
|
|
|
|
|
</trim>
|
|
|
|
|
where use_id = #{useId}
|
|
|
|
|
</update>
|
|
|
|
|