30 lines
1.6 KiB
XML
30 lines
1.6 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="edu.whut.smilepicturebackend.mapper.SpaceMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="edu.whut.smilepicturebackend.model.entity.Space">
|
|
<id property="id" column="id" jdbcType="BIGINT"/>
|
|
<result property="spaceName" column="space_name" jdbcType="VARCHAR"/>
|
|
<result property="spaceLevel" column="space_level" jdbcType="INTEGER"/>
|
|
<result property="spaceType" column="space_type" jdbcType="INTEGER"/>
|
|
<result property="maxSize" column="max_size" jdbcType="BIGINT"/>
|
|
<result property="maxCount" column="max_count" jdbcType="BIGINT"/>
|
|
<result property="totalSize" column="total_size" jdbcType="BIGINT"/>
|
|
<result property="totalCount" column="total_count" jdbcType="BIGINT"/>
|
|
<result property="userId" column="user_id" jdbcType="BIGINT"/>
|
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
|
<result property="editTime" column="edit_time" jdbcType="TIMESTAMP"/>
|
|
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
|
<result property="isDelete" column="is_delete" jdbcType="TINYINT"/>
|
|
</resultMap>
|
|
|
|
<sql id="Base_Column_List">
|
|
id,space_name,space_level,space_type,
|
|
max_size,max_count,total_size,
|
|
total_count,user_id,create_time,
|
|
edit_time,update_time,is_delete
|
|
</sql>
|
|
</mapper>
|