|
@@ -6,13 +6,15 @@
|
|
|
<result column="api_id" jdbcType="BIGINT" property="apiId" />
|
|
|
<result column="interface_name" jdbcType="VARCHAR" property="interfaceName" />
|
|
|
<result column="interface_identity" jdbcType="VARCHAR" property="interfaceIdentity" />
|
|
|
- <result column="is_auth" jdbcType="TINYINT" property="isAuth" />
|
|
|
+ <result column="is_auth" jdbcType="BIT" property="isAuth" />
|
|
|
<result column="request_method" jdbcType="VARCHAR" property="requestMethod" />
|
|
|
<result column="response_format" jdbcType="VARCHAR" property="responseFormat" />
|
|
|
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt" />
|
|
|
<result column="created_by" jdbcType="BIGINT" property="createdBy" />
|
|
|
<result column="deleted_at" jdbcType="TIMESTAMP" property="deletedAt" />
|
|
|
<result column="deleted_by" jdbcType="BIGINT" property="deletedBy" />
|
|
|
+ <result column="route_id" jdbcType="VARCHAR" property="routeId" />
|
|
|
+ <result column="app_id" jdbcType="VARCHAR" property="appId" />
|
|
|
</resultMap>
|
|
|
<resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.lightinit.hsdataportal.entity.ResourceApiInterfaceWithBLOBs">
|
|
|
<result column="url" jdbcType="LONGVARCHAR" property="url" />
|
|
@@ -80,7 +82,7 @@
|
|
|
</sql>
|
|
|
<sql id="Base_Column_List">
|
|
|
id, api_id, interface_name, interface_identity, is_auth, request_method, response_format,
|
|
|
- created_at, created_by, deleted_at, deleted_by
|
|
|
+ created_at, created_by, deleted_at, deleted_by, route_id, app_id
|
|
|
</sql>
|
|
|
<sql id="Blob_Column_List">
|
|
|
url, request_demo, response_demo, remark
|
|
@@ -140,13 +142,15 @@
|
|
|
insert into resource_api_interface (api_id, interface_name, interface_identity,
|
|
|
is_auth, request_method, response_format,
|
|
|
created_at, created_by, deleted_at,
|
|
|
- deleted_by, url, request_demo,
|
|
|
- response_demo, remark)
|
|
|
+ deleted_by, route_id, app_id,
|
|
|
+ url, request_demo, response_demo,
|
|
|
+ remark)
|
|
|
values (#{apiId,jdbcType=BIGINT}, #{interfaceName,jdbcType=VARCHAR}, #{interfaceIdentity,jdbcType=VARCHAR},
|
|
|
- #{isAuth,jdbcType=TINYINT}, #{requestMethod,jdbcType=VARCHAR}, #{responseFormat,jdbcType=VARCHAR},
|
|
|
+ #{isAuth,jdbcType=BIT}, #{requestMethod,jdbcType=VARCHAR}, #{responseFormat,jdbcType=VARCHAR},
|
|
|
#{createdAt,jdbcType=TIMESTAMP}, #{createdBy,jdbcType=BIGINT}, #{deletedAt,jdbcType=TIMESTAMP},
|
|
|
- #{deletedBy,jdbcType=BIGINT}, #{url,jdbcType=LONGVARCHAR}, #{requestDemo,jdbcType=LONGVARCHAR},
|
|
|
- #{responseDemo,jdbcType=LONGVARCHAR}, #{remark,jdbcType=LONGVARCHAR})
|
|
|
+ #{deletedBy,jdbcType=BIGINT}, #{routeId,jdbcType=VARCHAR}, #{appId,jdbcType=VARCHAR},
|
|
|
+ #{url,jdbcType=LONGVARCHAR}, #{requestDemo,jdbcType=LONGVARCHAR}, #{responseDemo,jdbcType=LONGVARCHAR},
|
|
|
+ #{remark,jdbcType=LONGVARCHAR})
|
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.lightinit.hsdataportal.entity.ResourceApiInterfaceWithBLOBs">
|
|
|
<selectKey keyProperty="id" order="AFTER" resultType="java.lang.Long">
|
|
@@ -184,6 +188,12 @@
|
|
|
<if test="deletedBy != null">
|
|
|
deleted_by,
|
|
|
</if>
|
|
|
+ <if test="routeId != null">
|
|
|
+ route_id,
|
|
|
+ </if>
|
|
|
+ <if test="appId != null">
|
|
|
+ app_id,
|
|
|
+ </if>
|
|
|
<if test="url != null">
|
|
|
url,
|
|
|
</if>
|
|
@@ -208,7 +218,7 @@
|
|
|
#{interfaceIdentity,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="isAuth != null">
|
|
|
- #{isAuth,jdbcType=TINYINT},
|
|
|
+ #{isAuth,jdbcType=BIT},
|
|
|
</if>
|
|
|
<if test="requestMethod != null">
|
|
|
#{requestMethod,jdbcType=VARCHAR},
|
|
@@ -228,6 +238,12 @@
|
|
|
<if test="deletedBy != null">
|
|
|
#{deletedBy,jdbcType=BIGINT},
|
|
|
</if>
|
|
|
+ <if test="routeId != null">
|
|
|
+ #{routeId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="appId != null">
|
|
|
+ #{appId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
<if test="url != null">
|
|
|
#{url,jdbcType=LONGVARCHAR},
|
|
|
</if>
|
|
@@ -264,7 +280,7 @@
|
|
|
interface_identity = #{record.interfaceIdentity,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="record.isAuth != null">
|
|
|
- is_auth = #{record.isAuth,jdbcType=TINYINT},
|
|
|
+ is_auth = #{record.isAuth,jdbcType=BIT},
|
|
|
</if>
|
|
|
<if test="record.requestMethod != null">
|
|
|
request_method = #{record.requestMethod,jdbcType=VARCHAR},
|
|
@@ -284,6 +300,12 @@
|
|
|
<if test="record.deletedBy != null">
|
|
|
deleted_by = #{record.deletedBy,jdbcType=BIGINT},
|
|
|
</if>
|
|
|
+ <if test="record.routeId != null">
|
|
|
+ route_id = #{record.routeId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="record.appId != null">
|
|
|
+ app_id = #{record.appId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
<if test="record.url != null">
|
|
|
url = #{record.url,jdbcType=LONGVARCHAR},
|
|
|
</if>
|
|
@@ -307,13 +329,15 @@
|
|
|
api_id = #{record.apiId,jdbcType=BIGINT},
|
|
|
interface_name = #{record.interfaceName,jdbcType=VARCHAR},
|
|
|
interface_identity = #{record.interfaceIdentity,jdbcType=VARCHAR},
|
|
|
- is_auth = #{record.isAuth,jdbcType=TINYINT},
|
|
|
+ is_auth = #{record.isAuth,jdbcType=BIT},
|
|
|
request_method = #{record.requestMethod,jdbcType=VARCHAR},
|
|
|
response_format = #{record.responseFormat,jdbcType=VARCHAR},
|
|
|
created_at = #{record.createdAt,jdbcType=TIMESTAMP},
|
|
|
created_by = #{record.createdBy,jdbcType=BIGINT},
|
|
|
deleted_at = #{record.deletedAt,jdbcType=TIMESTAMP},
|
|
|
deleted_by = #{record.deletedBy,jdbcType=BIGINT},
|
|
|
+ route_id = #{record.routeId,jdbcType=VARCHAR},
|
|
|
+ app_id = #{record.appId,jdbcType=VARCHAR},
|
|
|
url = #{record.url,jdbcType=LONGVARCHAR},
|
|
|
request_demo = #{record.requestDemo,jdbcType=LONGVARCHAR},
|
|
|
response_demo = #{record.responseDemo,jdbcType=LONGVARCHAR},
|
|
@@ -328,13 +352,15 @@
|
|
|
api_id = #{record.apiId,jdbcType=BIGINT},
|
|
|
interface_name = #{record.interfaceName,jdbcType=VARCHAR},
|
|
|
interface_identity = #{record.interfaceIdentity,jdbcType=VARCHAR},
|
|
|
- is_auth = #{record.isAuth,jdbcType=TINYINT},
|
|
|
+ is_auth = #{record.isAuth,jdbcType=BIT},
|
|
|
request_method = #{record.requestMethod,jdbcType=VARCHAR},
|
|
|
response_format = #{record.responseFormat,jdbcType=VARCHAR},
|
|
|
created_at = #{record.createdAt,jdbcType=TIMESTAMP},
|
|
|
created_by = #{record.createdBy,jdbcType=BIGINT},
|
|
|
deleted_at = #{record.deletedAt,jdbcType=TIMESTAMP},
|
|
|
- deleted_by = #{record.deletedBy,jdbcType=BIGINT}
|
|
|
+ deleted_by = #{record.deletedBy,jdbcType=BIGINT},
|
|
|
+ route_id = #{record.routeId,jdbcType=VARCHAR},
|
|
|
+ app_id = #{record.appId,jdbcType=VARCHAR}
|
|
|
<if test="_parameter != null">
|
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
|
</if>
|
|
@@ -352,7 +378,7 @@
|
|
|
interface_identity = #{interfaceIdentity,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="isAuth != null">
|
|
|
- is_auth = #{isAuth,jdbcType=TINYINT},
|
|
|
+ is_auth = #{isAuth,jdbcType=BIT},
|
|
|
</if>
|
|
|
<if test="requestMethod != null">
|
|
|
request_method = #{requestMethod,jdbcType=VARCHAR},
|
|
@@ -372,6 +398,12 @@
|
|
|
<if test="deletedBy != null">
|
|
|
deleted_by = #{deletedBy,jdbcType=BIGINT},
|
|
|
</if>
|
|
|
+ <if test="routeId != null">
|
|
|
+ route_id = #{routeId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="appId != null">
|
|
|
+ app_id = #{appId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
<if test="url != null">
|
|
|
url = #{url,jdbcType=LONGVARCHAR},
|
|
|
</if>
|
|
@@ -392,13 +424,15 @@
|
|
|
set api_id = #{apiId,jdbcType=BIGINT},
|
|
|
interface_name = #{interfaceName,jdbcType=VARCHAR},
|
|
|
interface_identity = #{interfaceIdentity,jdbcType=VARCHAR},
|
|
|
- is_auth = #{isAuth,jdbcType=TINYINT},
|
|
|
+ is_auth = #{isAuth,jdbcType=BIT},
|
|
|
request_method = #{requestMethod,jdbcType=VARCHAR},
|
|
|
response_format = #{responseFormat,jdbcType=VARCHAR},
|
|
|
created_at = #{createdAt,jdbcType=TIMESTAMP},
|
|
|
created_by = #{createdBy,jdbcType=BIGINT},
|
|
|
deleted_at = #{deletedAt,jdbcType=TIMESTAMP},
|
|
|
deleted_by = #{deletedBy,jdbcType=BIGINT},
|
|
|
+ route_id = #{routeId,jdbcType=VARCHAR},
|
|
|
+ app_id = #{appId,jdbcType=VARCHAR},
|
|
|
url = #{url,jdbcType=LONGVARCHAR},
|
|
|
request_demo = #{requestDemo,jdbcType=LONGVARCHAR},
|
|
|
response_demo = #{responseDemo,jdbcType=LONGVARCHAR},
|
|
@@ -410,13 +444,15 @@
|
|
|
set api_id = #{apiId,jdbcType=BIGINT},
|
|
|
interface_name = #{interfaceName,jdbcType=VARCHAR},
|
|
|
interface_identity = #{interfaceIdentity,jdbcType=VARCHAR},
|
|
|
- is_auth = #{isAuth,jdbcType=TINYINT},
|
|
|
+ is_auth = #{isAuth,jdbcType=BIT},
|
|
|
request_method = #{requestMethod,jdbcType=VARCHAR},
|
|
|
response_format = #{responseFormat,jdbcType=VARCHAR},
|
|
|
created_at = #{createdAt,jdbcType=TIMESTAMP},
|
|
|
created_by = #{createdBy,jdbcType=BIGINT},
|
|
|
deleted_at = #{deletedAt,jdbcType=TIMESTAMP},
|
|
|
- deleted_by = #{deletedBy,jdbcType=BIGINT}
|
|
|
+ deleted_by = #{deletedBy,jdbcType=BIGINT},
|
|
|
+ route_id = #{routeId,jdbcType=VARCHAR},
|
|
|
+ app_id = #{appId,jdbcType=VARCHAR}
|
|
|
where id = #{id,jdbcType=BIGINT}
|
|
|
</update>
|
|
|
</mapper>
|