tj
2025-06-05 2d549a04870d1315868a7cf19952b64e8071e711
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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.cloudroam.mapper.UserIdentityMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.cloudroam.model.UserIdentityDO">
        <id column="id" property="id" />
        <result column="user_id" property="userId" />
        <result column="identity_type" property="identityType" />
        <result column="identifier" property="identifier" />
        <result column="credential" property="credential" />
    </resultMap>
 
</mapper>