yangys
2024-10-30 25db770e621f1259b8d5b7fd514207f7481c2d0f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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.qianwen.smartman.modules.system.mapper.MetaObjectTypeFieldMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="metaObjectTypeFieldResultMap" type="com.qianwen.smartman.modules.system.entity.MetaObjectTypeField">
        <id column="id" property="id"/>
        <result column="object_id" property="objectId"/>
        <result column="f_code" property="fCode"/>
        <result column="f_name" property="fName"/>
        <result column="field" property="field"/>
        <result column="element_type" property="elementType"/>
        <result column="enum_type" property="enumType"/>
        <result column="seq" property="seq"/>
    </resultMap>
 
 
</mapper>