|
@@ -0,0 +1,25 @@
|
|
|
+<?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.hrsk.cloud.eg.infrastructure.repository.database.mapper.EgApiProductExtendMapper">
|
|
|
+
|
|
|
+ <!-- 可根据自己的需求,是否要使用 -->
|
|
|
+ <resultMap type="com.hrsk.cloud.eg.infrastructure.repository.database.entity.EgApiProductExtendDo" id="egApiProductExtendMap">
|
|
|
+ <result property="id" column="id"/>
|
|
|
+ <result property="createUid" column="create_uid"/>
|
|
|
+ <result property="createUsername" column="create_username"/>
|
|
|
+ <result property="gmtCreate" column="gmt_create"/>
|
|
|
+ <result property="modifyUid" column="modify_uid"/>
|
|
|
+ <result property="modifyUsername" column="modify_username"/>
|
|
|
+ <result property="gmtModify" column="gmt_modify"/>
|
|
|
+ <result property="status" column="status"/>
|
|
|
+ <result property="apiId" column="api_id"/>
|
|
|
+ <result property="shareRange" column="share_range"/>
|
|
|
+ <result property="protocol" column="protocol"/>
|
|
|
+ <result property="sharePurpose" column="share_purpose"/>
|
|
|
+ <result property="shareType" column="share_type"/>
|
|
|
+ <result property="needCheck" column="need_check"/>
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+
|
|
|
+</mapper>
|