15 lines
499 B
XML
15 lines
499 B
XML
<?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.hshh.nation.file.mapper.FileMapper">
|
|
|
|
<!-- 通用查询映射结果 -->
|
|
<resultMap id="BaseResultMap" type="com.hshh.nation.file.entity.File">
|
|
<id column="id" property="id" />
|
|
<result column="data" property="data" />
|
|
<result column="file_name" property="fileName" />
|
|
</resultMap>
|
|
|
|
|
|
|
|
</mapper>
|