cjl
2023-09-22 3321d513cbab14a70d0123708f1352d61456966e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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.moral.api.mapper.FileTableMapper">
 
        <!-- 通用查询映射结果 -->
        <resultMap id="BaseResultMap" type="com.moral.api.entity.FileTable">
                    <id column="file_id" property="fileId" />
                    <result column="file_module" property="fileModule" />
                    <result column="relation_id" property="relationId" />
                    <result column="file_name" property="fileName" />
                    <result column="file_type" property="fileType" />
                    <result column="file_address" property="fileAddress" />
                    <result column="file_size" property="fileSize" />
                    <result column="is_del" property="isDel" />
                    <result column="create_id" property="createId" />
                    <result column="create_name" property="createName" />
                    <result column="create_time" property="createTime" />
        </resultMap>
 
</mapper>