mitao
2024-12-17 ab7b8b5e702989d894620c41fbaa0e2d6904ecd5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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.sinata.system.mapper.SysUserDepartmentMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.sinata.system.domain.SysUserDepartment">
        <id column="ID" property="id" />
        <result column="USER_ID" property="userId" />
        <result column="DEPARTMENT_ID" property="departmentId" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        ID, USER_ID, DEPARTMENT_ID
    </sql>
 
</mapper>