Browse Source

添加签名

lidongyang 5 years ago
parent
commit
4bf4fce0be

+ 20 - 43
src/main/java/com/lightinit/hsdataportal/common/GateWayUtils.java

@@ -1,59 +1,36 @@
 package com.lightinit.hsdataportal.common;
 
-import com.lightinit.hsdataportal.dictionary.DicNewGateway;
+import com.lightinit.hsdataportal.entity.ResourceApiInterfaceWithBLOBs;
 
-import java.util.Date;
 import java.util.HashMap;
+import java.util.List;
 import java.util.Map;
 
 public class GateWayUtils {
 
-    public static String gatewayAuthAdd(String ouyId1, String applicationid, String userId, String remark) {
-        String code = null ;
-        Map<String, String> params = new HashMap<>();
-        params.put("routeId", ouyId1);
-        params.put("appId", applicationid);
-        params.put("userId", userId);
-        params.put("remark", remark);
-        try {
-            String str = HttpUtil.httpPost(DicNewGateway.AUTHADD, null, params);
-            Map<String, Object> map1 = HttpUtil.strToMap(str);
-            if (map1.get("code").equals("200")) {
-                code = map1.get("code").toString() ;
-            }else {
-                throw new RuntimeException("新增api鉴权异常:"+map1.get("message"));
+    public static void gatewayAuthAdd(List<ResourceApiInterfaceWithBLOBs> list, String userId, String remark) throws Exception {
+        if (list.size()>0){
+            for (ResourceApiInterfaceWithBLOBs resourceApiInterfaceWithBLOBs : list) {
+                Map<String, String> params = new HashMap<>();
+                params.put("appId", resourceApiInterfaceWithBLOBs.getAppId());
+                params.put("userId", userId);
+                params.put("remark", remark);
+                String str = HttpUtil.httpPost(SysContants.GatewayPath.GATEWAYURL_SIGINSAVE, null, params);
             }
-            System.out.println("=================" + map1 + "==========================");
-        } catch (Exception e) {
-            throw new RuntimeException("新增api鉴权异常!");
         }
-        return code ;
     }
 
-    public static String gatewayChargeAdd(String ouyId1, String applicationid, String userId,String chargeType
-            ,String chargeValue, String remark) {
-        String code = null ;
-        Map<String, String> params = new HashMap<>();
-        params.put("routeId", ouyId1);
-        params.put("applicationId", applicationid);
-        params.put("userId", userId);
-        params.put("chargeType", chargeType);
-        params.put("chargeValue", chargeValue);
-        params.put("effectiveTime", new Date().toString());
-        params.put("remark", remark);
-        try {
-            String str = HttpUtil.httpPost(DicNewGateway.CHANGEADD, null, params);
-            Map<String, Object> map1 = HttpUtil.strToMap(str);
-            if (map1.get("code").equals("200")) {
-                code = map1.get("code").toString() ;
-            } else {
-                throw new RuntimeException("新增api鉴权异常:"+map1.get("message"));
+    public static void gatewayChargeAdd(List<ResourceApiInterfaceWithBLOBs> list, String userId, String remark) throws Exception {
+        if (list.size() > 0) {
+            for (ResourceApiInterfaceWithBLOBs resourceApiInterfaceWithBLOBs : list) {
+                Map<String, String> params = new HashMap<>();
+                params.put("routeId", resourceApiInterfaceWithBLOBs.getRouteId());
+                params.put("appId", resourceApiInterfaceWithBLOBs.getAppId());
+                params.put("userId", userId);
+                params.put("remark", remark);
+                HttpUtil.httpPost(SysContants.GatewayPath.GATEWAYURL_AUTHSAVE, null, params);
+                HttpUtil.httpPost(SysContants.GatewayPath.GATEWAYURL_CHARGESAVE, null, params);
             }
-            System.out.println("=================" + map1 + "==========================");
-        } catch (Exception e) {
-            throw new RuntimeException("新增api计费异常!");
         }
-        return code ;
     }
-
 }

+ 19 - 0
src/main/java/com/lightinit/hsdataportal/common/SysContants.java

@@ -71,4 +71,23 @@ public class SysContants {
 
     }
 
+    public static class GatewayPath{
+        public final static String HSDATAGATEWAYAPP = "/hsdatagatewayapp" ;
+
+        public final static String GATEWAYURL = "gatewayUrl" ;
+
+        public static final String GETGATEWAYURL = ConfigUtils.getConfiguration(SysContants.PropertyFilePath.CONFIG).getString(SysContants.GatewayPath.GATEWAYURL) ;
+        // 添加路由接口
+        public final static String GATEWAYURL_ROUTESAVE = GETGATEWAYURL + "/routesave" ;
+        // 添加应用接口
+        public final static String GATEWAYURL_APPSAVE = GETGATEWAYURL + "/appsave" ;
+        // 添加签名
+        public final static String GATEWAYURL_SIGINSAVE = GETGATEWAYURL + "/signsave" ;
+        // 添加鉴权
+        public final static String GATEWAYURL_AUTHSAVE = GETGATEWAYURL + "/authsave" ;
+        // 添加计费
+        public final static String GATEWAYURL_CHARGESAVE = GETGATEWAYURL + "/chargesave" ;
+
+    }
+
 }

+ 1 - 1
src/main/java/com/lightinit/hsdataportal/controller/open/APIOpenController.java

@@ -88,7 +88,7 @@ public class APIOpenController {
 
     @RequestMapping(value = "apply.action/{id}")
     @ResponseBody
-    public ResultState apply(@PathVariable Long id,String applyReason,HttpSession session){
+    public ResultState apply(@PathVariable Long id,String applyReason,HttpSession session) throws Exception {
         LoginUser loginUser = (LoginUser) session.getAttribute(LoginUser.SESSION_KEY_LOGIN_USER);
         return apiService.apply(id,loginUser.getId(),DicPlatformType.OPEN,applyReason);
     }

+ 1 - 1
src/main/java/com/lightinit/hsdataportal/controller/share/APIShareController.java

@@ -78,7 +78,7 @@ public class APIShareController {
 
     @RequestMapping(value = "apply.action/{id}")
     @ResponseBody
-    public ResultState apply(@PathVariable Long id,String applyReason,HttpSession session){
+    public ResultState apply(@PathVariable Long id,String applyReason,HttpSession session) throws Exception {
         LoginUser loginUser = (LoginUser) session.getAttribute(LoginUser.SESSION_KEY_LOGIN_USER);
         return apiService.apply(id,loginUser.getId(),DicPlatformType.SHARE,applyReason);
     }

+ 23 - 3
src/main/java/com/lightinit/hsdataportal/entity/ResourceApiInterface.java

@@ -11,7 +11,7 @@ public class ResourceApiInterface {
 
     private String interfaceIdentity;
 
-    private Byte isAuth;
+    private Boolean isAuth;
 
     private String requestMethod;
 
@@ -25,6 +25,10 @@ public class ResourceApiInterface {
 
     private Long deletedBy;
 
+    private String routeId;
+
+    private String appId;
+
     public Long getId() {
         return id;
     }
@@ -57,11 +61,11 @@ public class ResourceApiInterface {
         this.interfaceIdentity = interfaceIdentity == null ? null : interfaceIdentity.trim();
     }
 
-    public Byte getIsAuth() {
+    public Boolean getIsAuth() {
         return isAuth;
     }
 
-    public void setIsAuth(Byte isAuth) {
+    public void setIsAuth(Boolean isAuth) {
         this.isAuth = isAuth;
     }
 
@@ -112,4 +116,20 @@ public class ResourceApiInterface {
     public void setDeletedBy(Long deletedBy) {
         this.deletedBy = deletedBy;
     }
+
+    public String getRouteId() {
+        return routeId;
+    }
+
+    public void setRouteId(String routeId) {
+        this.routeId = routeId == null ? null : routeId.trim();
+    }
+
+    public String getAppId() {
+        return appId;
+    }
+
+    public void setAppId(String appId) {
+        this.appId = appId == null ? null : appId.trim();
+    }
 }

+ 151 - 11
src/main/java/com/lightinit/hsdataportal/entity/ResourceApiInterfaceExample.java

@@ -4,7 +4,7 @@ import java.util.ArrayList;
 import java.util.Date;
 import java.util.List;
 
-public class ResourceApiInterfaceExample extends BaseExample {
+public class ResourceApiInterfaceExample {
     protected String orderByClause;
 
     protected boolean distinct;
@@ -375,52 +375,52 @@ public class ResourceApiInterfaceExample extends BaseExample {
             return (Criteria) this;
         }
 
-        public Criteria andIsAuthEqualTo(Byte value) {
+        public Criteria andIsAuthEqualTo(Boolean value) {
             addCriterion("is_auth =", value, "isAuth");
             return (Criteria) this;
         }
 
-        public Criteria andIsAuthNotEqualTo(Byte value) {
+        public Criteria andIsAuthNotEqualTo(Boolean value) {
             addCriterion("is_auth <>", value, "isAuth");
             return (Criteria) this;
         }
 
-        public Criteria andIsAuthGreaterThan(Byte value) {
+        public Criteria andIsAuthGreaterThan(Boolean value) {
             addCriterion("is_auth >", value, "isAuth");
             return (Criteria) this;
         }
 
-        public Criteria andIsAuthGreaterThanOrEqualTo(Byte value) {
+        public Criteria andIsAuthGreaterThanOrEqualTo(Boolean value) {
             addCriterion("is_auth >=", value, "isAuth");
             return (Criteria) this;
         }
 
-        public Criteria andIsAuthLessThan(Byte value) {
+        public Criteria andIsAuthLessThan(Boolean value) {
             addCriterion("is_auth <", value, "isAuth");
             return (Criteria) this;
         }
 
-        public Criteria andIsAuthLessThanOrEqualTo(Byte value) {
+        public Criteria andIsAuthLessThanOrEqualTo(Boolean value) {
             addCriterion("is_auth <=", value, "isAuth");
             return (Criteria) this;
         }
 
-        public Criteria andIsAuthIn(List<Byte> values) {
+        public Criteria andIsAuthIn(List<Boolean> values) {
             addCriterion("is_auth in", values, "isAuth");
             return (Criteria) this;
         }
 
-        public Criteria andIsAuthNotIn(List<Byte> values) {
+        public Criteria andIsAuthNotIn(List<Boolean> values) {
             addCriterion("is_auth not in", values, "isAuth");
             return (Criteria) this;
         }
 
-        public Criteria andIsAuthBetween(Byte value1, Byte value2) {
+        public Criteria andIsAuthBetween(Boolean value1, Boolean value2) {
             addCriterion("is_auth between", value1, value2, "isAuth");
             return (Criteria) this;
         }
 
-        public Criteria andIsAuthNotBetween(Byte value1, Byte value2) {
+        public Criteria andIsAuthNotBetween(Boolean value1, Boolean value2) {
             addCriterion("is_auth not between", value1, value2, "isAuth");
             return (Criteria) this;
         }
@@ -804,6 +804,146 @@ public class ResourceApiInterfaceExample extends BaseExample {
             addCriterion("deleted_by not between", value1, value2, "deletedBy");
             return (Criteria) this;
         }
+
+        public Criteria andRouteIdIsNull() {
+            addCriterion("route_id is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andRouteIdIsNotNull() {
+            addCriterion("route_id is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andRouteIdEqualTo(String value) {
+            addCriterion("route_id =", value, "routeId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRouteIdNotEqualTo(String value) {
+            addCriterion("route_id <>", value, "routeId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRouteIdGreaterThan(String value) {
+            addCriterion("route_id >", value, "routeId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRouteIdGreaterThanOrEqualTo(String value) {
+            addCriterion("route_id >=", value, "routeId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRouteIdLessThan(String value) {
+            addCriterion("route_id <", value, "routeId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRouteIdLessThanOrEqualTo(String value) {
+            addCriterion("route_id <=", value, "routeId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRouteIdLike(String value) {
+            addCriterion("route_id like", value, "routeId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRouteIdNotLike(String value) {
+            addCriterion("route_id not like", value, "routeId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRouteIdIn(List<String> values) {
+            addCriterion("route_id in", values, "routeId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRouteIdNotIn(List<String> values) {
+            addCriterion("route_id not in", values, "routeId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRouteIdBetween(String value1, String value2) {
+            addCriterion("route_id between", value1, value2, "routeId");
+            return (Criteria) this;
+        }
+
+        public Criteria andRouteIdNotBetween(String value1, String value2) {
+            addCriterion("route_id not between", value1, value2, "routeId");
+            return (Criteria) this;
+        }
+
+        public Criteria andAppIdIsNull() {
+            addCriterion("app_id is null");
+            return (Criteria) this;
+        }
+
+        public Criteria andAppIdIsNotNull() {
+            addCriterion("app_id is not null");
+            return (Criteria) this;
+        }
+
+        public Criteria andAppIdEqualTo(String value) {
+            addCriterion("app_id =", value, "appId");
+            return (Criteria) this;
+        }
+
+        public Criteria andAppIdNotEqualTo(String value) {
+            addCriterion("app_id <>", value, "appId");
+            return (Criteria) this;
+        }
+
+        public Criteria andAppIdGreaterThan(String value) {
+            addCriterion("app_id >", value, "appId");
+            return (Criteria) this;
+        }
+
+        public Criteria andAppIdGreaterThanOrEqualTo(String value) {
+            addCriterion("app_id >=", value, "appId");
+            return (Criteria) this;
+        }
+
+        public Criteria andAppIdLessThan(String value) {
+            addCriterion("app_id <", value, "appId");
+            return (Criteria) this;
+        }
+
+        public Criteria andAppIdLessThanOrEqualTo(String value) {
+            addCriterion("app_id <=", value, "appId");
+            return (Criteria) this;
+        }
+
+        public Criteria andAppIdLike(String value) {
+            addCriterion("app_id like", value, "appId");
+            return (Criteria) this;
+        }
+
+        public Criteria andAppIdNotLike(String value) {
+            addCriterion("app_id not like", value, "appId");
+            return (Criteria) this;
+        }
+
+        public Criteria andAppIdIn(List<String> values) {
+            addCriterion("app_id in", values, "appId");
+            return (Criteria) this;
+        }
+
+        public Criteria andAppIdNotIn(List<String> values) {
+            addCriterion("app_id not in", values, "appId");
+            return (Criteria) this;
+        }
+
+        public Criteria andAppIdBetween(String value1, String value2) {
+            addCriterion("app_id between", value1, value2, "appId");
+            return (Criteria) this;
+        }
+
+        public Criteria andAppIdNotBetween(String value1, String value2) {
+            addCriterion("app_id not between", value1, value2, "appId");
+            return (Criteria) this;
+        }
     }
 
     public static class Criteria extends GeneratedCriteria {

+ 0 - 43
src/main/java/com/lightinit/hsdataportal/entity/ResourceApiInterfaceWithBLOBs.java

@@ -1,43 +0,0 @@
-package com.lightinit.hsdataportal.entity;
-
-public class ResourceApiInterfaceWithBLOBs extends ResourceApiInterface {
-    private String url;
-
-    private String requestDemo;
-
-    private String responseDemo;
-
-    private String remark;
-
-    public String getUrl() {
-        return url;
-    }
-
-    public void setUrl(String url) {
-        this.url = url == null ? null : url.trim();
-    }
-
-    public String getRequestDemo() {
-        return requestDemo;
-    }
-
-    public void setRequestDemo(String requestDemo) {
-        this.requestDemo = requestDemo == null ? null : requestDemo.trim();
-    }
-
-    public String getResponseDemo() {
-        return responseDemo;
-    }
-
-    public void setResponseDemo(String responseDemo) {
-        this.responseDemo = responseDemo == null ? null : responseDemo.trim();
-    }
-
-    public String getRemark() {
-        return remark;
-    }
-
-    public void setRemark(String remark) {
-        this.remark = remark == null ? null : remark.trim();
-    }
-}

+ 15 - 18
src/main/java/com/lightinit/hsdataportal/impl/APIServiceImpl.java

@@ -3,6 +3,7 @@ package com.lightinit.hsdataportal.impl;
 import com.lightinit.hsdataportal.common.GateWayUtils;
 import com.lightinit.hsdataportal.common.HttpUtil;
 import com.lightinit.hsdataportal.common.OrderNumberUtils;
+import com.lightinit.hsdataportal.common.SysContants;
 import com.lightinit.hsdataportal.dictionary.*;
 import com.lightinit.hsdataportal.entity.*;
 import com.lightinit.hsdataportal.mapper.*;
@@ -208,6 +209,8 @@ public class APIServiceImpl implements IAPIservice {
         return resultState;
     }
 
+
+    @Override
     public boolean isApply(Long settingId, Long userId, String dicPlatformType, String applyReason) {
         //查询publish_setting
         PublishSetting publishSetting = publishSettingMapper.selectByPrimaryKey(settingId);
@@ -290,7 +293,7 @@ public class APIServiceImpl implements IAPIservice {
 
     @Override
     @Transactional
-    public ResultState<Long> apply(Long settingId, Long followId, String dicPlatformType, String applyReason) {
+    public ResultState<Long> apply(Long settingId, Long followId, String dicPlatformType, String applyReason) throws Exception{
         DynamicDataContextHolder.setCustomerType(DynamicDataContextHolder.DEFAULT);
         ResultState<Long> resultState = new ResultState<Long>();
         Calendar c = Calendar.getInstance();
@@ -304,7 +307,11 @@ public class APIServiceImpl implements IAPIservice {
         PublishInfoWithBLOBs publishInfoWithBLOBs = publishInfoMapper.selectByPrimaryKey(publishSetting.getPublishInfoId());
         //查询resource
         Resource resource = resourceMapper.selectByPrimaryKey(publishInfoWithBLOBs.getResourceId());
-
+        // 查询resource_api_interface
+        ResourceApiInterfaceExample example = new ResourceApiInterfaceExample() ;
+        ResourceApiInterfaceExample.Criteria criteria =example.createCriteria() ;
+        criteria.andApiIdEqualTo(publishInfoWithBLOBs.getResourceId()) ;
+        List<ResourceApiInterfaceWithBLOBs> resourceApiInterfaceWithBLOBs = resourceApiInterfaceMapper.selectByExampleWithBLOBs(example);
         //插入resource_auth
         ResourceAuth resourceAuth = new ResourceAuth();
         resourceAuth.setPublishSettingId(settingId);
@@ -332,6 +339,8 @@ public class APIServiceImpl implements IAPIservice {
         }
 
         result = resourceAuthMapper.insert(resourceAuth);
+        User user = userMapper.selectByPrimaryKey(followId);
+        GateWayUtils.gatewayAuthAdd(resourceApiInterfaceWithBLOBs,user.getUsername(),user.getUsername()+"添加授权") ;
         if (resource.getOpenType().equals(DicResourceOpenType.UNCONDITIONAL) || dicPlatformType.equals(DicPlatformType.SHARE)) {
             //插入order表
             Order order = new Order();
@@ -376,28 +385,16 @@ public class APIServiceImpl implements IAPIservice {
                 if (resource.getOpenType().equals(DicResourceOpenType.UNCONDITIONAL)) {
                     //1。已授权,免费
                     if (orderGoods.getChargeMethod().equals(DicPublishSettingChargeMethod.FREE)) {
-                        if (publishInfoWithBLOBs.getOutId1()!=null){
-                            User user = userMapper.selectByPrimaryKey(order.getUserId());
-                            // 新增网关授权
-                            GateWayUtils.gatewayAuthAdd(publishInfoWithBLOBs.getOutId1(),DicNewGateway.APPLICATIONID,user.getUsername(),user.getUsername()+"添加授权") ;
-                            //新增网关计费
-                            GateWayUtils.gatewayChargeAdd(publishInfoWithBLOBs.getOutId1(),DicNewGateway.APPLICATIONID,user.getUsername(),
-                                    DicPublishSettingChargeMethod.FREE,publishSetting.getUseTimesLimit().toString(),user.getUsername()+"添加计费") ;
-                        }
+                            //新增授权和计费
+                            GateWayUtils.gatewayChargeAdd(resourceApiInterfaceWithBLOBs,user.getUsername(), user.getUsername()+"添加授权和计费") ;
                     }
 
                 } ;
             }
             if (dicPlatformType.equals(DicPlatformType.SHARE)){
                 if(resource.getShareType().equals(DicResourceShareType.UNCONDITIONAL)){
-                    if (publishInfoWithBLOBs.getOutId1()!=null){
-                        Admin user = adminMapper.selectByPrimaryKey(order.getUserId());
-                        // 新增网关授权
-                        GateWayUtils.gatewayAuthAdd(publishInfoWithBLOBs.getOutId1(),DicNewGateway.APPLICATIONID,user.getUsername(),user.getUsername()+"添加授权") ;
-                        //新增网关计费
-                        GateWayUtils.gatewayChargeAdd(publishInfoWithBLOBs.getOutId1(),DicNewGateway.APPLICATIONID,user.getUsername(),
-                                DicPublishSettingChargeMethod.FREE,publishSetting.getUseTimesLimit().toString(),user.getUsername()+"添加计费") ;
-                    }
+                        //新增授权和计费
+                    GateWayUtils.gatewayChargeAdd(resourceApiInterfaceWithBLOBs,user.getUsername(), user.getUsername()+"添加授权和计费") ;
                 }
             }
 

+ 1 - 1
src/main/java/com/lightinit/hsdataportal/service/IAPIservice.java

@@ -25,7 +25,7 @@ public interface IAPIservice {
 
     APIShareViewModel queryShareView(Long id);
 
-    ResultState<Long> apply(Long settingId, Long followId,String dicPlatformType,String applyReason);
+    ResultState<Long> apply(Long settingId, Long followId,String dicPlatformType,String applyReason) throws Exception;
 
 
     List<APIServiceTypeModel> getApiServiceTypes(String fuwutype);

+ 6 - 1
src/main/resources/config.properties

@@ -9,7 +9,7 @@
 #jdbc.sentry.username=root
 #jdbc.sentry.password=iuGoto8#@20w
 
-jdbc.sentry.url=jdbc:mysql://rm-2zea3p7q7lrvjs8s4.mysql.rds.aliyuncs.com/hsdataplatform?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2b8
+jdbc.sentry.url=jdbc:mysql://39.105.217.215:3306/hsdataplatform?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false
 jdbc.sentry.username=hsdataplatform
 jdbc.sentry.password=Lightinit@1
 jdbc.sentry.driverClassName=com.mysql.cj.jdbc.Driver
@@ -103,5 +103,10 @@ applicationId=app1551771060908923486
 uploadFileRootDir=D:/HSDataPlatform/Upload/Files/
 uploadImageRootDir=D:/HSDataPlatform/Upload/Images/
 
+# 对接服务网关前缀地址
+gatewayUrl=http://localhost:8080/gateway/interface
+
+
+
 
 

+ 3 - 3
src/main/resources/mybatis-generator/generatorConfig.xml

@@ -140,9 +140,9 @@
         <!--<table tableName="resource_api">-->
             <!--<generatedKey column="id" sqlStatement="MySql" identity="true"/>-->
         <!--</table>-->
-        <!--<table tableName="resource_api_interface">-->
-            <!--<generatedKey column="id" sqlStatement="MySql" identity="true"/>-->
-        <!--</table>-->
+<!--        <table tableName="resource_api_interface">-->
+<!--            <generatedKey column="id" sqlStatement="MySql" identity="true"/>-->
+<!--        </table>-->
         <!--<table tableName="resource_api_interface_input">-->
             <!--<generatedKey column="id" sqlStatement="MySql" identity="true"/>-->
         <!--</table>-->

+ 52 - 16
src/main/resources/sqlmaps/ResourceApiInterfaceMapper.xml

@@ -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>