Merge branch 'dev' of http://192.168.2.237:3000/root/kangarooDataCenterV3 into yuecheng-project

This commit is contained in:
xiang2lin 2024-06-18 11:17:01 +08:00
commit a60e6675b6
2 changed files with 11 additions and 0 deletions

View File

@ -20,6 +20,8 @@ public class SysApplicationApiEntity extends BaseEntity {
private String appId; private String appId;
/** api应用名称 */ /** api应用名称 */
private String appName; private String appName;
/** api应用地址 **/
private String appUrl;
/** 目录 */ /** 目录 */
private String catalogueId; private String catalogueId;
/** 目录名称 */ /** 目录名称 */
@ -291,5 +293,13 @@ public class SysApplicationApiEntity extends BaseEntity {
public void setReturnSuccessValue(String returnSuccessValue) { public void setReturnSuccessValue(String returnSuccessValue) {
this.returnSuccessValue = returnSuccessValue; this.returnSuccessValue = returnSuccessValue;
} }
public String getAppUrl() {
return appUrl;
}
public void setAppUrl(String appUrl) {
this.appUrl = appUrl;
}
} }

View File

@ -10,6 +10,7 @@
<result property="apiPath" column="api_path" jdbcType="VARCHAR"/> <result property="apiPath" column="api_path" jdbcType="VARCHAR"/>
<result property="appId" column="app_id" jdbcType="VARCHAR"/> <result property="appId" column="app_id" jdbcType="VARCHAR"/>
<result property="appName" column="app_name" jdbcType="VARCHAR"/> <result property="appName" column="app_name" jdbcType="VARCHAR"/>
<result property="appUrl" column="app_url" jdbcType="VARCHAR"/>
<result property="catalogueId" column="catalogue_id" jdbcType="VARCHAR"/> <result property="catalogueId" column="catalogue_id" jdbcType="VARCHAR"/>
<result property="catalogueName" column="catalogue_name" jdbcType="VARCHAR"/> <result property="catalogueName" column="catalogue_name" jdbcType="VARCHAR"/>
<result property="apiName" column="api_name" jdbcType="VARCHAR"/> <result property="apiName" column="api_name" jdbcType="VARCHAR"/>