|
|
|
@ -91,9 +91,6 @@
|
|
|
|
|
<if test="unitId != null and unitId != ''">
|
|
|
|
|
AND unitId = #{unitId}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="customerId != null and customerId != ''">
|
|
|
|
|
AND customerId = #{customerId}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="platformId != null and platformId != ''">
|
|
|
|
|
AND platformId = #{platformId}
|
|
|
|
|
</if>
|
|
|
|
@ -109,15 +106,6 @@
|
|
|
|
|
<if test="invSubCode != null and invSubCode != ''">
|
|
|
|
|
AND invSubCode = #{invSubCode}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="appid != null and appid != ''">
|
|
|
|
|
AND appid = #{appid}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="apiKey != null and apiKey != ''">
|
|
|
|
|
AND apiKey = #{apiKey}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="secretKey != null and secretKey != ''">
|
|
|
|
|
AND secretKey = #{secretKey}
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
@ -152,6 +140,7 @@
|
|
|
|
|
|
|
|
|
|
<select id="selectDelectList" resultType="com.glxp.api.res.inout.PlatformLinkResponse">
|
|
|
|
|
SELECT io.id,
|
|
|
|
|
io.unitId,
|
|
|
|
|
io.platformId,
|
|
|
|
|
io.invCode,
|
|
|
|
|
io.invName,
|
|
|
|
@ -160,7 +149,11 @@
|
|
|
|
|
io.targetAction,
|
|
|
|
|
io.targetName,
|
|
|
|
|
io.sourceAction,
|
|
|
|
|
io.appid,
|
|
|
|
|
io.apiKey,
|
|
|
|
|
io.secretKey,
|
|
|
|
|
b1.`name` as sourceName
|
|
|
|
|
|
|
|
|
|
FROM io_unit_maintain_platform io
|
|
|
|
|
LEFT JOIN basic_bussiness_type b1 ON b1.action = io.sourceAction
|
|
|
|
|
where io.platformId = #{platformId}
|
|
|
|
|