15 lines
998 B
XML
15 lines
998 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.css.txw.yygl.mapper.DocumentMapper">
|
|
<resultMap id="BaseResultMap" type="com.css.txw.yygl.pojo.domain.DocumentDO">
|
|
<id property="id" column="id" jdbcType="BIGINT"/>
|
|
<result property="categoryId" column="category_id" jdbcType="BIGINT"/>
|
|
<result property="title" column="title" jdbcType="VARCHAR"/>
|
|
<result property="content" column="content" jdbcType="VARCHAR"/>
|
|
<result property="status" column="status" jdbcType="TINYINT"/>
|
|
<result property="sort" column="sort" jdbcType="INTEGER"/>
|
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
|
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
|
</resultMap>
|
|
<sql id="Base_Column_List">id,category_id,title,content,status,sort,create_time,update_time</sql>
|
|
</mapper> |