24 lines
885 B
XML
24 lines
885 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.demo.mapper.UserinfoMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="com.example.demo.domain.Userinfo">
|
|
<id property="id" column="id" jdbcType="INTEGER"/>
|
|
<result property="name" column="name" jdbcType="VARCHAR"/>
|
|
<result property="type" column="type" jdbcType="INTEGER"/>
|
|
<result property="username" column="username" jdbcType="VARCHAR"/>
|
|
<result property="userpwd" column="userpwd" jdbcType="VARCHAR"/>
|
|
</resultMap>
|
|
|
|
<sql id="Base_Column_List">
|
|
id,name,type,
|
|
username,userpwd
|
|
</sql>
|
|
<select id="selectAll" resultMap="BaseResultMap">
|
|
select *
|
|
from USERINFO
|
|
</select>
|
|
</mapper>
|