21 lines
899 B
XML
21 lines
899 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.example.takeawaysystemserver.mapper.UserMapper">
|
||
|
|
||
|
<resultMap id="BaseResultMap" type="com.example.takeawaysystemserver.entity.User">
|
||
|
<id property="id" column="id" jdbcType="VARCHAR"/>
|
||
|
<result property="username" column="username" jdbcType="VARCHAR"/>
|
||
|
<result property="password" column="password" jdbcType="VARCHAR"/>
|
||
|
<result property="phone" column="phone" jdbcType="VARCHAR"/>
|
||
|
<result property="address" column="address" jdbcType="VARCHAR"/>
|
||
|
<result property="status" column="status" jdbcType="INTEGER"/>
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="Base_Column_List">
|
||
|
id,username,password,
|
||
|
phone,address,status
|
||
|
</sql>
|
||
|
</mapper>
|