|
|
@@ -0,0 +1,23 @@
|
|
|
+<?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.ydtech.modules.protocol.dao.PtlAgreementAttributionMapper">
|
|
|
+
|
|
|
+ <resultMap id="BaseResultMap" type="com.ydtech.modules.protocol.entity.po.PtlAgreementAttribution">
|
|
|
+ <id property="id" column="id" jdbcType="BIGINT"/>
|
|
|
+ <result property="insCompanyId" column="ins_company_id" jdbcType="VARCHAR"/>
|
|
|
+ <result property="insCompanyName" column="ins_company_name" jdbcType="VARCHAR"/>
|
|
|
+ <result property="apiType" column="api_type" jdbcType="TINYINT"/>
|
|
|
+ <result property="fields" column="fields" javaType="com.alibaba.fastjson.JSONArray"
|
|
|
+ typeHandler="com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler" jdbcType="VARCHAR"/>
|
|
|
+ <result property="username" column="username" jdbcType="VARCHAR"/>
|
|
|
+ <result property="password" column="password" jdbcType="VARCHAR"/>
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ id,agreement_id,ins_company_id,
|
|
|
+ ins_company_name,api_type,fields,
|
|
|
+ username,password
|
|
|
+ </sql>
|
|
|
+</mapper>
|