|
@@ -19,6 +19,7 @@
|
|
|
<result column="EXAMPLE" jdbcType="CLOB" property="example"/>
|
|
<result column="EXAMPLE" jdbcType="CLOB" property="example"/>
|
|
|
<result column="PROXY_ADDRESS" jdbcType="VARCHAR" property="proxyAddress"/>
|
|
<result column="PROXY_ADDRESS" jdbcType="VARCHAR" property="proxyAddress"/>
|
|
|
<result column="PROXY_PATH" jdbcType="VARCHAR" property="proxyPath"/>
|
|
<result column="PROXY_PATH" jdbcType="VARCHAR" property="proxyPath"/>
|
|
|
|
|
+ <result column="gateway_id" jdbcType="VARCHAR" property="gatewayId"/>
|
|
|
<result column="SERVICE_SOURCE" jdbcType="VARCHAR" property="serviceSource"/>
|
|
<result column="SERVICE_SOURCE" jdbcType="VARCHAR" property="serviceSource"/>
|
|
|
<result property="serviceDept" column="SERVICE_DEPT" jdbcType="VARCHAR"/>
|
|
<result property="serviceDept" column="SERVICE_DEPT" jdbcType="VARCHAR"/>
|
|
|
<result property="manageName" column="MANAGE_NAME" jdbcType="VARCHAR"/>
|
|
<result property="manageName" column="MANAGE_NAME" jdbcType="VARCHAR"/>
|
|
@@ -50,7 +51,7 @@
|
|
|
<resultMap id="AuthVoResultMap" type="com.ruoyi.interfaces.domain.vo.PtServiceVo">
|
|
<resultMap id="AuthVoResultMap" type="com.ruoyi.interfaces.domain.vo.PtServiceVo">
|
|
|
<result property="id" jdbcType="VARCHAR" column="ID"/>
|
|
<result property="id" jdbcType="VARCHAR" column="ID"/>
|
|
|
<result property="deadline" column="DEADLINE"/>
|
|
<result property="deadline" column="DEADLINE"/>
|
|
|
- <result property="appId" jdbcType="VARCHAR" column="APP_ID"/>
|
|
|
|
|
|
|
+ <result property="gatewayId" jdbcType="VARCHAR" column="gateway_id"/>
|
|
|
<result property="srvId" jdbcType="VARCHAR" column="SRV_ID"/>
|
|
<result property="srvId" jdbcType="VARCHAR" column="SRV_ID"/>
|
|
|
<result property="userId" jdbcType="VARCHAR" column="USER_ID"/>
|
|
<result property="userId" jdbcType="VARCHAR" column="USER_ID"/>
|
|
|
<result column="SRV_ID" jdbcType="VARCHAR" property="srvId"/>
|
|
<result column="SRV_ID" jdbcType="VARCHAR" property="srvId"/>
|
|
@@ -69,6 +70,7 @@
|
|
|
<result column="EXAMPLE" jdbcType="CLOB" property="example"/>
|
|
<result column="EXAMPLE" jdbcType="CLOB" property="example"/>
|
|
|
<result column="PROXY_ADDRESS" jdbcType="VARCHAR" property="proxyAddress"/>
|
|
<result column="PROXY_ADDRESS" jdbcType="VARCHAR" property="proxyAddress"/>
|
|
|
<result column="PROXY_PATH" jdbcType="VARCHAR" property="proxyPath"/>
|
|
<result column="PROXY_PATH" jdbcType="VARCHAR" property="proxyPath"/>
|
|
|
|
|
+ <result column="gateway_id" jdbcType="VARCHAR" property="gatewayId"/>
|
|
|
<result column="SERVICE_SOURCE" jdbcType="VARCHAR" property="serviceSource"/>
|
|
<result column="SERVICE_SOURCE" jdbcType="VARCHAR" property="serviceSource"/>
|
|
|
<result property="serviceDept" column="SERVICE_DEPT" jdbcType="VARCHAR"/>
|
|
<result property="serviceDept" column="SERVICE_DEPT" jdbcType="VARCHAR"/>
|
|
|
<result property="manageName" column="MANAGE_NAME" jdbcType="VARCHAR"/>
|
|
<result property="manageName" column="MANAGE_NAME" jdbcType="VARCHAR"/>
|
|
@@ -200,6 +202,7 @@ PUBLISH_TIME
|
|
|
#{tm, jdbcType=DATE},
|
|
#{tm, jdbcType=DATE},
|
|
|
#{proxyAddress,jdbcType=VARCHAR},
|
|
#{proxyAddress,jdbcType=VARCHAR},
|
|
|
#{proxyPath,jdbcType=VARCHAR},
|
|
#{proxyPath,jdbcType=VARCHAR},
|
|
|
|
|
+ #{gatewayId,jdbcType=VARCHAR},
|
|
|
#{serviceSource,jdbcType=VARCHAR},
|
|
#{serviceSource,jdbcType=VARCHAR},
|
|
|
#{serviceDept,jdbcType=VARCHAR},
|
|
#{serviceDept,jdbcType=VARCHAR},
|
|
|
#{manageName,jdbcType=VARCHAR},
|
|
#{manageName,jdbcType=VARCHAR},
|
|
@@ -301,6 +304,9 @@ PUBLISH_TIME
|
|
|
<if test="proxyPath != null and proxyPath != ''">
|
|
<if test="proxyPath != null and proxyPath != ''">
|
|
|
and PROXY_PATH = #{proxyPath}
|
|
and PROXY_PATH = #{proxyPath}
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="gatewayId != null and gatewayId != ''">
|
|
|
|
|
+ and gateway_id = #{gatewayId}
|
|
|
|
|
+ </if>
|
|
|
<if test="serviceSource != null and serviceSource != ''">
|
|
<if test="serviceSource != null and serviceSource != ''">
|
|
|
and SERVICE_SOURCE = #{serviceSource}
|
|
and SERVICE_SOURCE = #{serviceSource}
|
|
|
</if>
|
|
</if>
|
|
@@ -432,6 +438,7 @@ PUBLISH_TIME
|
|
|
<if test="userId != null and userId != ''">USER_ID = #{userId},</if>
|
|
<if test="userId != null and userId != ''">USER_ID = #{userId},</if>
|
|
|
<if test="proxyAddress != null and proxyAddress != ''">PROXY_ADDRESS = #{proxyAddress},</if>
|
|
<if test="proxyAddress != null and proxyAddress != ''">PROXY_ADDRESS = #{proxyAddress},</if>
|
|
|
<if test="proxyPath != null and proxyPath != ''">PROXY_PATH = #{proxyPath},</if>
|
|
<if test="proxyPath != null and proxyPath != ''">PROXY_PATH = #{proxyPath},</if>
|
|
|
|
|
+ <if test="gatewayId != null and gatewayId != ''">gateway_id = #{gatewayId},</if>
|
|
|
<if test="serviceSource != null and serviceSource != ''">SERVICE_SOURCE = #{serviceSource},</if>
|
|
<if test="serviceSource != null and serviceSource != ''">SERVICE_SOURCE = #{serviceSource},</if>
|
|
|
<if test="serviceDept != null and serviceDept != ''">SERVICE_DEPT = #{serviceDept},</if>
|
|
<if test="serviceDept != null and serviceDept != ''">SERVICE_DEPT = #{serviceDept},</if>
|
|
|
<if test="manageName != null and manageName != ''">MANAGE_NAME = #{manageName},</if>
|
|
<if test="manageName != null and manageName != ''">MANAGE_NAME = #{manageName},</if>
|
|
@@ -499,7 +506,7 @@ PUBLISH_TIME
|
|
|
<select id="listByUserService" resultMap="AuthVoResultMap">
|
|
<select id="listByUserService" resultMap="AuthVoResultMap">
|
|
|
SELECT A.ID,
|
|
SELECT A.ID,
|
|
|
A.DEADLINE,
|
|
A.DEADLINE,
|
|
|
- A.APP_ID,
|
|
|
|
|
|
|
+ A.gateway_id,
|
|
|
A.USER_ID,
|
|
A.USER_ID,
|
|
|
P.UP_CYCL,
|
|
P.UP_CYCL,
|
|
|
P.OPEN_CNDTN,
|
|
P.OPEN_CNDTN,
|
|
@@ -620,6 +627,7 @@ PUBLISH_TIME
|
|
|
<result column="EXAMPLE" jdbcType="CLOB" property="example"/>
|
|
<result column="EXAMPLE" jdbcType="CLOB" property="example"/>
|
|
|
<result column="PROXY_ADDRESS" jdbcType="VARCHAR" property="proxyAddress"/>
|
|
<result column="PROXY_ADDRESS" jdbcType="VARCHAR" property="proxyAddress"/>
|
|
|
<result column="PROXY_PATH" jdbcType="VARCHAR" property="proxyPath"/>
|
|
<result column="PROXY_PATH" jdbcType="VARCHAR" property="proxyPath"/>
|
|
|
|
|
+ <result column="gateway_id" jdbcType="VARCHAR" property="gatewayId"/>
|
|
|
<result column="SERVICE_SOURCE" jdbcType="VARCHAR" property="serviceSource"/>
|
|
<result column="SERVICE_SOURCE" jdbcType="VARCHAR" property="serviceSource"/>
|
|
|
<result property="serviceDept" column="SERVICE_DEPT" jdbcType="VARCHAR"/>
|
|
<result property="serviceDept" column="SERVICE_DEPT" jdbcType="VARCHAR"/>
|
|
|
<result property="manageName" column="MANAGE_NAME" jdbcType="VARCHAR"/>
|
|
<result property="manageName" column="MANAGE_NAME" jdbcType="VARCHAR"/>
|