|
@@ -26,12 +26,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="code" column="code" />
|
|
|
<result property="callsuccnum" column="callsuccnum" />
|
|
|
<result property="callfailnum" column="callfailnum" />
|
|
|
+ <result property="deptId" column="dept_id" />
|
|
|
+ <result property="deptName" column="dept_name" />
|
|
|
<result property="count" column="count" />
|
|
|
<result property="percent" column="percent" />
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectTUInterfaceinfoVo">
|
|
|
- select id, status, remark, del_flag, create_by, create_time, update_by, update_time, interface_name, info_item, usage_scenarios, share_type, interface_type, env, sign_serveraddress, interface_address, type_iam, type_aksk,code,callsuccnum,callfailnum from t_u_interfaceinfo
|
|
|
+ select id, status, remark, del_flag, create_by, create_time, update_by, update_time, interface_name, info_item, usage_scenarios, share_type, interface_type, env, sign_serveraddress, interface_address, type_iam, type_aksk,dept_id,dept_name,code,callsuccnum,callfailnum from t_u_interfaceinfo
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectTUInterfaceinfoList" parameterType="TUInterfaceinfo" resultMap="TUInterfaceinfoResult">
|
|
@@ -81,6 +83,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="interfaceAddress != null">interface_address,</if>
|
|
|
<if test="typeIam != null">type_iam,</if>
|
|
|
<if test="typeAksk != null">type_aksk,</if>
|
|
|
+ <if test="deptId != null">dept_id,</if>
|
|
|
+ <if test="deptName != null">dept_name,</if>
|
|
|
<if test="code != null">code,</if>
|
|
|
<if test="callsuccnum != null">callsuccnum,</if>
|
|
|
<if test="callfailnum != null">callfailnum,</if>
|
|
@@ -104,6 +108,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="interfaceAddress != null">#{interfaceAddress},</if>
|
|
|
<if test="typeIam != null">#{typeIam},</if>
|
|
|
<if test="typeAksk != null">#{typeAksk},</if>
|
|
|
+ <if test="deptId != null">#{deptId},</if>
|
|
|
+ <if test="deptName != null">#{deptName},</if>
|
|
|
<if test="code != null">#{code},</if>
|
|
|
<if test="callsuccnum != null">#{callsuccnum},</if>
|
|
|
<if test="callfailnum != null">#{callfailnum},</if>
|
|
@@ -130,6 +136,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="interfaceAddress != null">interface_address = #{interfaceAddress},</if>
|
|
|
<if test="typeIam != null">type_iam = #{typeIam},</if>
|
|
|
<if test="typeAksk != null">type_aksk = #{typeAksk},</if>
|
|
|
+ <if test="deptId != null">dept_id = #{deptId},</if>
|
|
|
+ <if test="deptName != null">dept_name = #{deptName},</if>
|
|
|
<if test="code != null">code = #{code},</if>
|
|
|
<if test="callsuccnum != null">callsuccnum = #{callsuccnum},</if>
|
|
|
<if test="callfailnum != null">callfailnum = #{callfailnum},</if>
|