Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fill-system
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
廖旭伟
fill-system
Commits
88beec4d
Commit
88beec4d
authored
Feb 17, 2023
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加应用白名单接口
parent
85df869a
Pipeline
#2475
canceled with stages
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
3 deletions
+16
-3
common-lib/src/main/java/com/mortals/xhx/common/pdu/app/AppPdu.java
.../src/main/java/com/mortals/xhx/common/pdu/app/AppPdu.java
+11
-0
fill-manager/pom.xml
fill-manager/pom.xml
+1
-1
fill-manager/src/main/bin/start.sh
fill-manager/src/main/bin/start.sh
+1
-1
fill-manager/src/test/java/com/mortals/httpclient/system.http
...-manager/src/test/java/com/mortals/httpclient/system.http
+3
-1
No files found.
common-lib/src/main/java/com/mortals/xhx/common/pdu/app/AppPdu.java
View file @
88beec4d
...
@@ -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
...
...
fill-manager/pom.xml
View file @
88beec4d
...
@@ -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>
1
700
1
</profiles.server.port>
<profiles.server.port>
1
921
1
</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>
...
...
fill-manager/src/main/bin/start.sh
View file @
88beec4d
...
@@ -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 &
...
...
fill-manager/src/test/java/com/mortals/httpclient/system.http
View file @
88beec4d
...
@@ -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
###站点树
###站点树
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment