All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.base4j.mvc.sys.mapper.xml.SysLogMapper.xml Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
<?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="com.base4j.mvc.sys.mapper.SysLogMapper">
    <resultMap id="ExtendResultMap" extends="BaseResultMap" type="com.base4j.mvc.sys.entity.SysLog">
        <id column="ID" property="id"/>
        <result column="CREATE_BY" property="createBy"/>
        <result column="CREATE_DT" property="createDt"/>
        <result column="OPERATION" property="operation"/>
        <result column="METHOD" property="method"/>
        <result column="PARAMS" property="params"/>
        <result column="IP" property="ip"/>
        <result column="NAME" property="name"/>
    </resultMap>

    <select id="selectExtendPageByParam" resultMap="BaseResultMap"
            parameterType="java.util.Map">
        select
        <trim prefix=" " suffix=" " suffixOverrides=",">
            SEED_SYS_LOG.ID,
            SEED_SYS_LOG.CREATE_BY,
            SEED_SYS_LOG.CREATE_DT,
            SEED_SYS_LOG.OPERATION,
            SEED_SYS_LOG.METHOD,
            SEED_SYS_LOG.PARAMS,
            SEED_SYS_LOG.IP,
            SEED_SYS_USER.NAME,
        </trim>
        from SEED_SYS_LOG
        LEFT JOIN SEED_SYS_USER ON SEED_SYS_LOG.CREATE_BY = SEED_SYS_USER.ID
        <where>
            <if test="name != null">
                AND SEED_SYS_USER.NAME = name
            </if>
            <if test="begin != null">
                AND   BETWEEN begin AND end
            </if>
            <if test="operation != null">
                AND SEED_SYS_LOG.OPERATION = operation
            </if>
        </where>
        ORDER BY SEED_SYS_LOG.ID DESC
    </select>
</mapper>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy