Merge branch 'dev' of http://192.168.2.237:3000/root/kangarooDataCenterV3 into yuecheng-project
This commit is contained in:
commit
a60e6675b6
|
@ -20,6 +20,8 @@ public class SysApplicationApiEntity extends BaseEntity {
|
|||
private String appId;
|
||||
/** api应用名称 */
|
||||
private String appName;
|
||||
/** api应用地址 **/
|
||||
private String appUrl;
|
||||
/** 目录 */
|
||||
private String catalogueId;
|
||||
/** 目录名称 */
|
||||
|
@ -291,5 +293,13 @@ public class SysApplicationApiEntity extends BaseEntity {
|
|||
public void setReturnSuccessValue(String returnSuccessValue) {
|
||||
this.returnSuccessValue = returnSuccessValue;
|
||||
}
|
||||
|
||||
public String getAppUrl() {
|
||||
return appUrl;
|
||||
}
|
||||
|
||||
public void setAppUrl(String appUrl) {
|
||||
this.appUrl = appUrl;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
<result property="apiPath" column="api_path" jdbcType="VARCHAR"/>
|
||||
<result property="appId" column="app_id" 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="catalogueName" column="catalogue_name" jdbcType="VARCHAR"/>
|
||||
<result property="apiName" column="api_name" jdbcType="VARCHAR"/>
|
||||
|
|
Loading…
Reference in New Issue