<?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.artfess.examine.dao.ExamFileDao">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.artfess.examine.model.ExamFile">
        <id column="id_" property="id" />
        <result column="material_id_" property="materialId" />
        <result column="file_ext_" property="fileExt" />
        <result column="file_name_" property="fileName" />
        <result column="file_type_" property="fileType" />
        <result column="file_url_" property="fileUrl" />
        <result column="file_sizes" property="fileSizes" />
        <result column="sn_" property="sn" />
        <result column="create_by_" property="createBy" />
        <result column="create_org_id_" property="createOrgId" />
        <result column="create_time_" property="createTime" />
        <result column="tenant_id_" property="tenantId" />
        <result column="is_dele_" property="isDele" />
    </resultMap>

    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id_, material_id_, file_ext_, file_name_, file_type_, file_url_, file_sizes, sn_, create_by_, create_org_id_, create_time_, tenant_id_, is_dele_
    </sql>

</mapper>
