|
|
|
@ -13,7 +13,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<result property="netName" column="net_name" />
|
|
|
|
|
<result property="netSn" column="net_sn" />
|
|
|
|
|
<result property="remark" column="remark" />
|
|
|
|
|
<result property="netname" column="netname" />
|
|
|
|
|
<result property="registName" column="regist_name" />
|
|
|
|
|
<result property="netManager" column="net_manager" />
|
|
|
|
|
<result property="netMiji" column="net_miji" />
|
|
|
|
|
<result property="netsmname" column="netsmname" />
|
|
|
|
@ -22,7 +22,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="selectTdPropertyNetinfoVo">
|
|
|
|
|
select id, net_id, net_brand, net_ip, net_no, net_name, net_sn, remark, netname, net_manager, net_miji, netsmname, is_curcial, depart from td_property_netinfo
|
|
|
|
|
select id, net_id, net_brand, net_ip, net_no, net_name, net_sn, remark, regist_name, net_manager, net_miji, netsmname, is_curcial, depart from td_property_netinfo
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
<select id="selectTdPropertyNetinfoList" parameterType="TdPropertyNetinfo" resultMap="TdPropertyNetinfoResult">
|
|
|
|
@ -35,7 +35,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="netNo != null and netNo != '' "> and net_no = #{netNo}</if>
|
|
|
|
|
<if test="netName != null and netName != '' "> and net_name = #{netName}</if>
|
|
|
|
|
<if test="netSn != null "> and net_sn = #{netSn}</if>
|
|
|
|
|
<if test="netname != null "> and netname = #{netname}</if>
|
|
|
|
|
<if test="registName != null "> and regist_name = #{registName}</if>
|
|
|
|
|
<if test="netManager != null "> and net_manager = #{netManager}</if>
|
|
|
|
|
<if test="netMiji != null "> and net_miji = #{netMiji}</if>
|
|
|
|
|
<if test="netsmname != null "> and netsmname = #{netsmname}</if>
|
|
|
|
@ -65,7 +65,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="netName != null">net_name,</if>
|
|
|
|
|
<if test="netSn != null">net_sn,</if>
|
|
|
|
|
<if test="remark != null">remark,</if>
|
|
|
|
|
<if test="netname != null">netname,</if>
|
|
|
|
|
<if test="registName != null">regist_name,</if>
|
|
|
|
|
<if test="netManager != null">net_manager,</if>
|
|
|
|
|
<if test="netMiji != null">net_miji,</if>
|
|
|
|
|
<if test="netsmname != null">netsmname,</if>
|
|
|
|
@ -81,7 +81,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="netName != null">#{netName},</if>
|
|
|
|
|
<if test="netSn != null">#{netSn},</if>
|
|
|
|
|
<if test="remark != null">#{remark},</if>
|
|
|
|
|
<if test="netname != null">#{netname},</if>
|
|
|
|
|
<if test="registName != null">#{registName},</if>
|
|
|
|
|
<if test="netManager != null">#{netManager},</if>
|
|
|
|
|
<if test="netMiji != null">#{netMiji},</if>
|
|
|
|
|
<if test="netsmname != null">#{netsmname},</if>
|
|
|
|
@ -100,7 +100,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="netName != null">net_name = #{netName},</if>
|
|
|
|
|
<if test="netSn != null">net_sn = #{netSn},</if>
|
|
|
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
|
|
|
<if test="netname != null">netname = #{netname},</if>
|
|
|
|
|
<if test="registName != null">regist_name = #{registName},</if>
|
|
|
|
|
<if test="netManager != null">net_manager = #{netManager},</if>
|
|
|
|
|
<if test="netMiji != null">net_miji = #{netMiji},</if>
|
|
|
|
|
<if test="netsmname != null">netsmname = #{netsmname},</if>
|
|
|
|
|