<?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.newfiber.api.pc.dao.SpecialistFileMapper"> <resultMap id="BaseResultMap" type="com.newfiber.api.pc.model.entity.SpecialistFile"> <id column="id" jdbcType="BIGINT" property="id" /> <result column="specialist_id" jdbcType="BIGINT" property="specialistId" /> <result column="file_path" jdbcType="VARCHAR" property="filePath" /> <result column="file_name" jdbcType="VARCHAR" property="fileName" /> <result column="create_time" jdbcType="TIMESTAMP" property="createTime" /> </resultMap> <sql id="Base_Column_List"> id, specialist_id, file_path, file_name, create_time </sql> </mapper>