Pu Zhibing
2024-11-25 30ddf6570494f77a3dde98e5cd85c07cb340f51a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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.ruoyi.account.mapper.SysLoginLogMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.ruoyi.system.api.model.SysLoginLog">
        <id column="id" property="id" />
        <result column="user_id" property="userId" />
        <result column="username" property="username" />
        <result column="ip_address" property="ipAddress" />
        <result column="address" property="address" />
        <result column="browser_type" property="browserType" />
        <result column="operating_system" property="operatingSystem" />
        <result column="login_time" property="loginTime" />
        <result column="login_status" property="loginStatus" />
        <result column="message" property="message" />
        <result column="create_time" property="createTime" />
        <result column="del_flag" property="delFlag" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id, user_id, username, ip_address, address, browser_type, operating_system, login_time, login_status, message, create_time, del_flag
    </sql>
 
</mapper>