k.e.book.ddh.mapper.CcAttachmentMapper.xml Maven / Gradle / Ivy
<?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="k.e.book.ddh.mapper.CcAttachmentMapper"> <!-- 通用查询映射结果 --> <resultMap id="BaseResultMap" type="k.e.book.ddh.entity.CcAttachmentDO"> <id column="id" property="id" /> <result column="category" property="category" /> <result column="admin_id" property="adminId" /> <result column="user_id" property="userId" /> <result column="url" property="url" /> <result column="imagewidth" property="imagewidth" /> <result column="imageheight" property="imageheight" /> <result column="imagetype" property="imagetype" /> <result column="imageframes" property="imageframes" /> <result column="filename" property="filename" /> <result column="filesize" property="filesize" /> <result column="mimetype" property="mimetype" /> <result column="extparam" property="extparam" /> <result column="createtime" property="createtime" /> <result column="updatetime" property="updatetime" /> <result column="uploadtime" property="uploadtime" /> <result column="storage" property="storage" /> <result column="sha1" property="sha1" /> </resultMap> <!-- 通用查询结果 --> <sql id="Base_Column_List"> id, category, admin_id, user_id, url, imagewidth, imageheight, imagetype, imageframes, filename, filesize, mimetype, extparam, createtime, updatetime, uploadtime, storage, sha1, </sql> </mapper>