21 lines
859 B
XML
21 lines
859 B
XML
<?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.metalloop.modules.auth.mapper.SysUserRoleMapper">
|
|
<resultMap id="BaseResultMap" type="com.metalloop.modules.auth.model.po.SysUserRole">
|
|
<!--@mbg.generated-->
|
|
<!--@Table sys_user_role-->
|
|
|
|
<result column="user_id" jdbcType="INTEGER" property="userId"/>
|
|
<result column="role_id" jdbcType="INTEGER" property="roleId"/>
|
|
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt"/><id column="id" jdbcType="BIGINT" property="id"/>
|
|
</resultMap>
|
|
<sql id="Base_Column_List">
|
|
<!--@mbg.generated-->
|
|
<!--@Table sys_user_role-->
|
|
user_id,
|
|
role_id,
|
|
created_at,
|
|
id
|
|
</sql>
|
|
</mapper>
|