Commit 88beec4d authored by 赵啸非's avatar 赵啸非

添加应用白名单接口

parent 85df869a
Pipeline #2475 canceled with stages
...@@ -13,6 +13,8 @@ import com.mortals.framework.model.BaseEntityLong; ...@@ -13,6 +13,8 @@ import com.mortals.framework.model.BaseEntityLong;
public class AppPdu extends BaseEntityLong { public class AppPdu extends BaseEntityLong {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
private String custUrl;
/** /**
* 站点Id * 站点Id
*/ */
...@@ -2105,6 +2107,14 @@ public class AppPdu extends BaseEntityLong { ...@@ -2105,6 +2107,14 @@ public class AppPdu extends BaseEntityLong {
return this; return this;
} }
public String getCustUrl() {
return custUrl;
}
public void setCustUrl(String custUrl) {
this.custUrl = custUrl;
}
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdList * @param updateUserIdList
...@@ -2116,6 +2126,7 @@ public class AppPdu extends BaseEntityLong { ...@@ -2116,6 +2126,7 @@ public class AppPdu extends BaseEntityLong {
/** /**
* 获取 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) * 获取 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4)
* @return orConditionList * @return orConditionList
......
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
<id>test</id> <id>test</id>
<properties> <properties>
<profiles.active>test</profiles.active> <profiles.active>test</profiles.active>
<profiles.server.port>17001</profiles.server.port> <profiles.server.port>19211</profiles.server.port>
<profiles.queue.type>rabbitmq</profiles.queue.type> <profiles.queue.type>rabbitmq</profiles.queue.type>
<profiles.kafka.brokers>192.168.0.251:9092</profiles.kafka.brokers> <profiles.kafka.brokers>192.168.0.251:9092</profiles.kafka.brokers>
<profiles.rabbitmq.host>192.168.0.98</profiles.rabbitmq.host> <profiles.rabbitmq.host>192.168.0.98</profiles.rabbitmq.host>
......
...@@ -61,7 +61,7 @@ exec "$JAVACMD" $JAVA_OPTS \ ...@@ -61,7 +61,7 @@ exec "$JAVACMD" $JAVA_OPTS \
-Dbasedir="$BASEDIR" \ -Dbasedir="$BASEDIR" \
-Djava.io.tmpdir=$TEMP_PATH \ -Djava.io.tmpdir=$TEMP_PATH \
-Dloader.path="file://$BASEDIR/conf,file://$BASEDIR/lib" \ -Dloader.path="file://$BASEDIR/conf,file://$BASEDIR/lib" \
-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5516 \ -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=15501 \
-jar $MAIN_CLASS \ -jar $MAIN_CLASS \
> /dev/null & > /dev/null &
......
...@@ -58,7 +58,9 @@ GET {{baseUrl}}/home/notice/info?id=14 ...@@ -58,7 +58,9 @@ GET {{baseUrl}}/home/notice/info?id=14
Authorization: {{authToken}} Authorization: {{authToken}}
Content-Type: application/json Content-Type: application/json
###应用列表
GET {{baseUrl}}/home/app/list?siteId=1
Content-Type: application/json
###站点树 ###站点树
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment