16 lines
713 B
XML
16 lines
713 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.x.retry.server.persistence.mybatis.mapper.SystemUserMapper">
|
||
|
|
||
|
<!-- 通用查询映射结果 -->
|
||
|
<resultMap id="BaseResultMap" type="com.x.retry.server.persistence.mybatis.po.SystemUser">
|
||
|
<id column="id" property="id" />
|
||
|
<result column="username" property="username" />
|
||
|
<result column="password" property="password" />
|
||
|
<result column="role" property="role" />
|
||
|
<result column="create_dt" property="createDt" />
|
||
|
<result column="update_dt" property="updateDt" />
|
||
|
</resultMap>
|
||
|
|
||
|
</mapper>
|