yangys
2024-11-02 9a9b747962cc00801d8cce4137d1e123d556a79b
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.qianwen.mdc.mapper.SysAccountMapper">
  <resultMap id="BaseResultMap" type="com.qianwen.mdc.domain.SysAccount">
    <id column="id" jdbcType="INTEGER" property="id" />
    <result column="user" jdbcType="VARCHAR" property="user" />
    <result column="name" jdbcType="VARCHAR" property="name" />
    <result column="phone" jdbcType="VARCHAR" property="phone" />
    <result column="password" jdbcType="VARCHAR" property="password" />
    <result column="role" jdbcType="VARCHAR" property="role" />
    <result column="ctime" jdbcType="TIMESTAMP" property="ctime" />
    <result column="ltime" jdbcType="TIMESTAMP" property="ltime" />
  </resultMap>
</mapper>