29 lines
1.3 KiB
XML
29 lines
1.3 KiB
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.yupi.yupao.mapper.TeamMapper">
|
||
|
|
||
|
<resultMap id="BaseResultMap" type="com.yupi.yupao.model.domain.Team">
|
||
|
<id property="id" column="id" jdbcType="BIGINT"/>
|
||
|
<result property="name" column="name" jdbcType="VARCHAR"/>
|
||
|
<result property="description" column="description" jdbcType="VARCHAR"/>
|
||
|
<result property="maxNum" column="maxNum" jdbcType="INTEGER"/>
|
||
|
<result property="expireTime" column="expireTime" jdbcType="TIMESTAMP"/>
|
||
|
<result property="userId" column="userId" jdbcType="BIGINT"/>
|
||
|
<result property="status" column="status" jdbcType="INTEGER"/>
|
||
|
<result property="password" column="password" jdbcType="VARCHAR"/>
|
||
|
<result property="createTime" column="createTime" jdbcType="TIMESTAMP"/>
|
||
|
<result property="updateTime" column="updateTime" jdbcType="TIMESTAMP"/>
|
||
|
<result property="isDelete" column="isDelete" jdbcType="TINYINT"/>
|
||
|
</resultMap>
|
||
|
|
||
|
|
||
|
<sql id="Base_Column_List">
|
||
|
id,name,description,
|
||
|
maxNum,expireTime,userId,
|
||
|
status,password,createTime,
|
||
|
updateTime,isDelete
|
||
|
</sql>
|
||
|
</mapper>
|