FileRecordEntityMapper.xml 1.08 KB
Newer Older
张辰's avatar
张辰 committed
1 2 3 4 5 6 7
<?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.tanpu.community.dao.mapper.community.FileRecordMapper">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.tanpu.community.dao.entity.community.FileRecordEntity">
        <id column="id" property="id" />
刘基明's avatar
刘基明 committed
8 9 10 11
        <result column="file_id" property="fileId" />
        <result column="file_type" property="fileType" />
        <result column="file_name" property="fileName" />
        <result column="file_oss_key" property="fileOssKey" />
张辰's avatar
张辰 committed
12 13 14 15
        <result column="preview_url" property="previewUrl" />
        <result column="create_time" property="createTime" />
        <result column="update_time" property="updateTime" />
        <result column="delete_tag" property="deleteTag" />
刘基明's avatar
刘基明 committed
16
        <result column="ext_info" property="extInfo" />
刘基明's avatar
刘基明 committed
17
        <result column="check_status" property="checkStatus" />
刘基明's avatar
刘基明 committed
18
        <result column="check_result_log" property="checkResultLog" />
张辰's avatar
张辰 committed
19 20 21
    </resultMap>

</mapper>