Newer
Older
huludao / src / main / resources / mapper / SpecialistFileMapper.xml
@新烽开发者 新烽开发者 on 19 Jul 783 bytes init
<?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>