|
@@ -17,6 +17,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<result property="loginName" column="login_name" />
|
|
<result property="loginName" column="login_name" />
|
|
<result property="interfaceinfoId" column="interfaceinfo_id" />
|
|
<result property="interfaceinfoId" column="interfaceinfo_id" />
|
|
<result property="interfaceinfoName" column="interfaceinfo_name" />
|
|
<result property="interfaceinfoName" column="interfaceinfo_name" />
|
|
|
|
+ <result property="deptId" column="dept_id" />
|
|
|
|
+ <result property="deptName" column="dept_name" />
|
|
<result property="ipaddress" column="ipaddress" />
|
|
<result property="ipaddress" column="ipaddress" />
|
|
<result property="os" column="os" />
|
|
<result property="os" column="os" />
|
|
<result property="platformInterfacetype" column="platform_interfacetype" />
|
|
<result property="platformInterfacetype" column="platform_interfacetype" />
|
|
@@ -29,7 +31,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectTULogVo">
|
|
<sql id="selectTULogVo">
|
|
- select id, status, remark, del_flag, create_by, create_time, update_by, update_time, login_user, login_name, interfaceinfo_id, interfaceinfo_name, ipaddress, os, platform_interfacetype, browser, param, results, operation_quantity, operation_status, exception_log from t_u_log
|
|
|
|
|
|
+ select id, status, remark, del_flag, create_by, create_time, update_by, update_time, login_user, login_name, interfaceinfo_id, interfaceinfo_name, dept_id, dept_name, ipaddress, os, platform_interfacetype, browser, param, results, operation_quantity, operation_status, exception_log from t_u_log
|
|
</sql>
|
|
</sql>
|
|
|
|
|
|
<select id="selectTULogList" parameterType="TULog" resultMap="TULogResult">
|
|
<select id="selectTULogList" parameterType="TULog" resultMap="TULogResult">
|
|
@@ -40,6 +42,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="loginName != null and loginName != ''"> and login_name like concat('%', #{loginName}, '%')</if>
|
|
<if test="loginName != null and loginName != ''"> and login_name like concat('%', #{loginName}, '%')</if>
|
|
<if test="interfaceinfoId != null and interfaceinfoId != ''"> and interfaceinfo_id = #{interfaceinfoId}</if>
|
|
<if test="interfaceinfoId != null and interfaceinfoId != ''"> and interfaceinfo_id = #{interfaceinfoId}</if>
|
|
<if test="interfaceinfoName != null and interfaceinfoName != ''"> and interfaceinfo_name like concat('%', #{interfaceinfoName}, '%')</if>
|
|
<if test="interfaceinfoName != null and interfaceinfoName != ''"> and interfaceinfo_name like concat('%', #{interfaceinfoName}, '%')</if>
|
|
|
|
+ <if test="deptId != null and deptId != ''"> and dept_id = #{deptId}</if>
|
|
|
|
+ <if test="deptName != null and deptName != ''"> and dept_name like concat('%', #{deptName}, '%')</if>
|
|
<if test="ipaddress != null and ipaddress != ''"> and ipaddress = #{ipaddress}</if>
|
|
<if test="ipaddress != null and ipaddress != ''"> and ipaddress = #{ipaddress}</if>
|
|
<if test="os != null and os != ''"> and os = #{os}</if>
|
|
<if test="os != null and os != ''"> and os = #{os}</if>
|
|
<if test="platformInterfacetype != null and platformInterfacetype != ''"> and platform_interfacetype = #{platformInterfacetype}</if>
|
|
<if test="platformInterfacetype != null and platformInterfacetype != ''"> and platform_interfacetype = #{platformInterfacetype}</if>
|
|
@@ -73,6 +77,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="loginName != null">login_name,</if>
|
|
<if test="loginName != null">login_name,</if>
|
|
<if test="interfaceinfoId != null">interfaceinfo_id,</if>
|
|
<if test="interfaceinfoId != null">interfaceinfo_id,</if>
|
|
<if test="interfaceinfoName != null">interfaceinfo_name,</if>
|
|
<if test="interfaceinfoName != null">interfaceinfo_name,</if>
|
|
|
|
+ <if test="deptId != null">dept_id,</if>
|
|
|
|
+ <if test="deptName != null">dept_name,</if>
|
|
<if test="ipaddress != null">ipaddress,</if>
|
|
<if test="ipaddress != null">ipaddress,</if>
|
|
<if test="os != null">os,</if>
|
|
<if test="os != null">os,</if>
|
|
<if test="platformInterfacetype != null">platform_interfacetype,</if>
|
|
<if test="platformInterfacetype != null">platform_interfacetype,</if>
|
|
@@ -96,6 +102,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="loginName != null">#{loginName},</if>
|
|
<if test="loginName != null">#{loginName},</if>
|
|
<if test="interfaceinfoId != null">#{interfaceinfoId},</if>
|
|
<if test="interfaceinfoId != null">#{interfaceinfoId},</if>
|
|
<if test="interfaceinfoName != null">#{interfaceinfoName},</if>
|
|
<if test="interfaceinfoName != null">#{interfaceinfoName},</if>
|
|
|
|
+ <if test="deptId != null">#{deptId},</if>
|
|
|
|
+ <if test="deptName != null">#{deptName},</if>
|
|
<if test="ipaddress != null">#{ipaddress},</if>
|
|
<if test="ipaddress != null">#{ipaddress},</if>
|
|
<if test="os != null">#{os},</if>
|
|
<if test="os != null">#{os},</if>
|
|
<if test="platformInterfacetype != null">#{platformInterfacetype},</if>
|
|
<if test="platformInterfacetype != null">#{platformInterfacetype},</if>
|
|
@@ -122,6 +130,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="loginName != null">login_name = #{loginName},</if>
|
|
<if test="loginName != null">login_name = #{loginName},</if>
|
|
<if test="interfaceinfoId != null">interfaceinfo_id = #{interfaceinfoId},</if>
|
|
<if test="interfaceinfoId != null">interfaceinfo_id = #{interfaceinfoId},</if>
|
|
<if test="interfaceinfoName != null">interfaceinfo_name = #{interfaceinfoName},</if>
|
|
<if test="interfaceinfoName != null">interfaceinfo_name = #{interfaceinfoName},</if>
|
|
|
|
+ <if test="deptId != null">dept_id = #{deptId},</if>
|
|
|
|
+ <if test="deptName != null">dept_name = #{deptName},</if>
|
|
<if test="ipaddress != null">ipaddress = #{ipaddress},</if>
|
|
<if test="ipaddress != null">ipaddress = #{ipaddress},</if>
|
|
<if test="os != null">os = #{os},</if>
|
|
<if test="os != null">os = #{os},</if>
|
|
<if test="platformInterfacetype != null">platform_interfacetype = #{platformInterfacetype},</if>
|
|
<if test="platformInterfacetype != null">platform_interfacetype = #{platformInterfacetype},</if>
|