123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="cn.ourwill.module.sys.dao.SysOperateLogDao">
- <resultMap type="cn.ourwill.module.sys.entity.SysOperateLog" id="baseMap">
- <result column="id" property="id"/>
- <result column="userId" property="userId"/>
- <result column="roleIds" property="roleIds"/>
- <result column="cTime" property="cTime"/>
- <result column="module" property="module"/>
- <result column="action" property="action"/>
- <result column="parameters" property="parameters"/>
- <result column="ip" property="ip"/>
- <result column="uagent" property="uagent"/>
- <result column="system" property="system"/>
- <result column="username" property="username"/>
- <result column="realname" property="realname"/>
- <result column="moduleName" property="moduleName"/>
- </resultMap>
- <sql id="columns">
- sol.id ,
- sol.userId ,
- sol.roleIds ,
- sol.cTime ,
- sol.module ,
- sol.action ,
- sol.parameters ,
- sol.ip ,
- sol.uagent ,
- sol.system,
- u.name as username,
- u.realname,
- m.name as moduleName
- </sql>
- <sql id="joinCols">
- left join sys_user u on sol.userId=u.id
- left join sys_module m on sol.module=m.id
- </sql>
- <select id="get" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM sys_operate_log sol
- <include refid="joinCols"/>
- WHERE a.id = #{id}
- </select>
- <select id="findList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM sys_operate_log sol
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and sol.id = #{id}
- </if>
- <if test="userId !=null">
- and sol.userId = #{userId}
- </if>
- <if test="roleIds !=null">
- and sol.roleIds = #{roleIds}
- </if>
- <if test="cTime !=null">
- and sol.cTime = #{cTime}
- </if>
- <if test="module !=null">
- and sol.module = #{module}
- </if>
- <if test="action !=null">
- and sol.action = #{action}
- </if>
- <if test="parameters !=null">
- and sol.parameters = #{parameters}
- </if>
- <if test="ip !=null">
- and sol.ip = #{ip}
- </if>
- <if test="uagent !=null">
- and sol.uagent = #{uagent}
- </if>
- <if test="system !=null">
- and sol.system = #{system}
- </if>
- <if test="username !=null">
- and u.name = #{username}
- </if>
- </where>
- ORDER BY sol.cTime DESC
- </select>
- <select id="findAllList" resultMap="baseMap">
- SELECT
- <include refid="columns"/>
- FROM sys_operate_log sol
- <include refid="joinCols"/>
- <where>
- <if test="id !=null">
- and sol.id = #{id}
- </if>
- <if test="userId !=null">
- and sol.userId = #{userId}
- </if>
- <if test="roleIds !=null">
- and sol.roleIds = #{roleIds}
- </if>
- <if test="cTime !=null">
- and sol.cTime = #{cTime}
- </if>
- <if test="module !=null">
- and sol.module = #{module}
- </if>
- <if test="action !=null">
- and sol.action = #{action}
- </if>
- <if test="parameters !=null">
- and sol.parameters = #{parameters}
- </if>
- <if test="ip !=null">
- and sol.ip = #{ip}
- </if>
- <if test="uagent !=null">
- and sol.uagent = #{uagent}
- </if>
- <if test="system !=null">
- and sol.system = #{system}
- </if>
- <if test="username !=null">
- and u.name = #{username}
- </if>
- </where>
- ORDER BY sol.cTime DESC
- </select>
- <insert id="insert" keyColumn="id" keyProperty="id" useGeneratedKeys="true"
- parameterType="cn.ourwill.module.sys.entity.SysOperateLog">
- INSERT INTO sys_operate_log
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- id,
- </if>
- <if test=" userId != null">
- userId,
- </if>
- <if test=" roleIds != null">
- roleIds,
- </if>
- <if test=" cTime != null">
- cTime,
- </if>
- <if test=" module != null">
- module,
- </if>
- <if test=" action != null">
- action,
- </if>
- <if test=" parameters != null">
- parameters,
- </if>
- <if test=" ip != null">
- ip,
- </if>
- <if test=" uagent != null">
- uagent,
- </if>
- <if test=" system != null">
- system
- </if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test=" id != null">
- #{id}, </if>
- <if test=" userId != null">
- #{userId}, </if>
- <if test=" roleIds != null">
- #{roleIds}, </if>
- <if test=" cTime != null">
- #{cTime}, </if>
- <if test=" module != null">
- #{module}, </if>
- <if test=" action != null">
- #{action}, </if>
- <if test=" parameters != null">
- #{parameters}, </if>
- <if test=" ip != null">
- #{ip}, </if>
- <if test=" uagent != null">
- #{uagent}, </if>
- <if test=" system != null">
- #{system} </if>
- </trim>
- </insert>
- <update id="update" parameterType="cn.ourwill.module.sys.entity.SysOperateLog">
- UPDATE sys_operate_log <set>
- <if test="id != null">
- id= #{id} ,
- </if>
- <if test="userId != null">
- userId= #{userId} ,
- </if>
- <if test="roleIds != null">
- roleIds= #{roleIds} ,
- </if>
- <if test="cTime != null">
- cTime= #{cTime} ,
- </if>
- <if test="module != null">
- module= #{module} ,
- </if>
- <if test="action != null">
- action= #{action} ,
- </if>
- <if test="parameters != null">
- parameters= #{parameters} ,
- </if>
- <if test="ip != null">
- ip= #{ip} ,
- </if>
- <if test="uagent != null">
- uagent= #{uagent} ,
- </if>
- <if test="system != null">
- system= #{system}
- </if>
- </set>
- WHERE id = #{id}
- </update>
- <delete id="deleteById" parameterType="java.lang.Long">
- DELETE FROM sys_operate_log WHERE id = #{id}
- </delete>
- <delete id="deleteByIds" parameterType="java.util.List">
- DELETE FROM sys_operate_log WHERE id IN
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- </delete>
- </mapper>
|