|
|
|
@ -15,7 +15,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<result property="propertyName" column="property_name" />
|
|
|
|
|
<result property="computerType" column="computer_type_" />
|
|
|
|
|
<result property="propertyMiji" column="property_miji" />
|
|
|
|
|
<result property="propertySn" column="property_SN" />
|
|
|
|
|
<result property="propertySn" column="property_sn" />
|
|
|
|
|
<result property="remark" column="remark" />
|
|
|
|
|
<result property="isCurcial" column="is_curcial" />
|
|
|
|
|
<result property="isSoftware" column="is_software" />
|
|
|
|
@ -38,7 +38,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="selectTdPropertyInfoVo">
|
|
|
|
|
select id, use_id, property_brand, property_mac, property_netstyle, property_type, property_no, property_name, computer_type_, property_miji, property_SN, remark, is_curcial, is_software, username, maintain_depart, maintain_user, maintain_date, maintain_state, destory_state, destory_depart, destory_user, destory_date, destory_type, property_refer, maintain_remark, shemichengdu, part from td_property_info
|
|
|
|
|
select id, use_id, property_brand, property_mac, property_netstyle, property_type, property_no, property_name, computer_type_, property_miji, property_sn, remark, is_curcial, is_software, username, maintain_depart, maintain_user, maintain_date, maintain_state, destory_state, destory_depart, destory_user, destory_date, destory_type, property_refer, maintain_remark, shemichengdu, part from td_property_info
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
<select id="selectTdPropertyInfoList" parameterType="TdPropertyInfo" resultMap="TdPropertyInfoResult">
|
|
|
|
@ -54,7 +54,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="propertyName != null and propertyName != ''"> and property_name like concat('%', #{propertyName}, '%')</if>
|
|
|
|
|
<if test="computerType != null and computerType != ''"> and computer_type_ = #{computerType}</if>
|
|
|
|
|
<if test="propertyMiji != null and propertyMiji != ''"> and property_miji = #{propertyMiji}</if>
|
|
|
|
|
<if test="propertySn != null and propertySn != ''"> and property_SN = #{propertySn}</if>
|
|
|
|
|
<if test="propertySn != null and propertySn != ''"> and property_sn = #{propertySn}</if>
|
|
|
|
|
<if test="isCurcial != null and isCurcial != ''"> and is_curcial = #{isCurcial}</if>
|
|
|
|
|
<if test="isSoftware != null and isSoftware != ''"> and is_software = #{isSoftware}</if>
|
|
|
|
|
<if test="username != null and username != ''"> and username like concat('%', #{username}, '%')</if>
|
|
|
|
@ -99,7 +99,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="propertyName != null">property_name,</if>
|
|
|
|
|
<if test="computerType != null">computer_type_,</if>
|
|
|
|
|
<if test="propertyMiji != null">property_miji,</if>
|
|
|
|
|
<if test="propertySn != null">property_SN,</if>
|
|
|
|
|
<if test="propertySn != null">property_sn,</if>
|
|
|
|
|
<if test="remark != null">remark,</if>
|
|
|
|
|
<if test="isCurcial != null">is_curcial,</if>
|
|
|
|
|
<if test="isSoftware != null">is_software,</if>
|
|
|
|
@ -166,7 +166,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="propertyName != null">property_name = #{propertyName},</if>
|
|
|
|
|
<if test="computerType != null">computer_type_ = #{computerType},</if>
|
|
|
|
|
<if test="propertyMiji != null">property_miji = #{propertyMiji},</if>
|
|
|
|
|
<if test="propertySn != null">property_SN = #{propertySn},</if>
|
|
|
|
|
<if test="propertySn != null">property_sn = #{propertySn},</if>
|
|
|
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
|
|
|
<if test="isCurcial != null">is_curcial = #{isCurcial},</if>
|
|
|
|
|
<if test="isSoftware != null">is_software = #{isSoftware},</if>
|
|
|
|
|