123456789101112131415161718192021222324252627 |
- <?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="boot.modules.calendar.mapper.CalendarMapper">
- <resultMap id="BaseResultMap" type="boot.modules.calendar.pojo.Calendar">
- <id property="id" column="id" jdbcType="BIGINT"/>
- <result property="title" column="title" jdbcType="VARCHAR"/>
- <result property="detail" column="detail" jdbcType="VARCHAR"/>
- <result property="start" column="start" jdbcType="DATE"/>
- <result property="end" column="end" jdbcType="DATE"/>
- <result property="overlap" column="overlap" jdbcType="TINYINT"/>
- <result property="editable" column="editable" jdbcType="TINYINT"/>
- <result property="color" column="color" jdbcType="VARCHAR"/>
- <result property="file" column="file" jdbcType="VARCHAR"/>
- <result property="fileType" column="file_type" jdbcType="VARCHAR"/>
- <result property="isDel" column="is_del" jdbcType="TINYINT"/>
- </resultMap>
- <sql id="Base_Column_List">
- id,title,detail,
- start,end,overlap,
- editable,color,file,
- file_type,is_del
- </sql>
- </mapper>
|