Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart_gov_platform
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
赵啸非
smart_gov_platform
Commits
d500463e
Commit
d500463e
authored
1 year ago
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改内部系统访问地址
parent
c2b7c6d0
master
first
reg
test
xuanhan
yanshi
1 merge request
!1
Master
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
base-manager/src/main/java/com/mortals/xhx/common/utils/SyncGovMatterDetailThread.java
...m/mortals/xhx/common/utils/SyncGovMatterDetailThread.java
+1
-1
common-lib/src/main/java/com/mortals/xhx/feign/area/IApiAreaFeign.java
...c/main/java/com/mortals/xhx/feign/area/IApiAreaFeign.java
+2
-2
common-lib/src/main/java/com/mortals/xhx/feign/device/IDeviceFeign.java
.../main/java/com/mortals/xhx/feign/device/IDeviceFeign.java
+2
-2
common-lib/src/main/java/com/mortals/xhx/feign/product/IProductFeign.java
...ain/java/com/mortals/xhx/feign/product/IProductFeign.java
+1
-1
common-lib/src/main/java/com/mortals/xhx/feign/user/IUserFeign.java
.../src/main/java/com/mortals/xhx/feign/user/IUserFeign.java
+2
-2
No files found.
base-manager/src/main/java/com/mortals/xhx/common/utils/SyncGovMatterDetailThread.java
View file @
d500463e
...
...
@@ -84,7 +84,7 @@ public class SyncGovMatterDetailThread implements Runnable {
List
<
MatterEntity
>
matterEntityList
=
matterService
.
find
(
new
MatterQuery
().
areaCode
(
siteEntity
.
getAreaCode
()).
source
(
SourceEnum
.
政务网
.
getValue
()));
log
.
info
(
"查询事项列表结束"
);
List
<
MatterEntity
>
unSyncDetailMatterList
=
matterEntityList
.
stream
()
.
filter
(
f
->
f
.
getHaveGetMatterInfo
().
equalsIgnoreCase
(
"false"
))
//
.filter(f -> f.getHaveGetMatterInfo().equalsIgnoreCase("false"))
.
collect
(
Collectors
.
toList
());
//查询站点事项相关
...
...
This diff is collapsed.
Click to expand it.
common-lib/src/main/java/com/mortals/xhx/feign/area/IApiAreaFeign.java
View file @
d500463e
...
...
@@ -28,7 +28,7 @@ public interface IApiAreaFeign extends IFeign {
* @param query
* @return
*/
@PostMapping
(
value
=
"/area/list"
)
@PostMapping
(
value
=
"/area/
inter
list"
)
String
list
(
@RequestBody
AreaEntity
query
);
...
...
@@ -38,7 +38,7 @@ public interface IApiAreaFeign extends IFeign {
* @param id
* @return
*/
@GetMapping
(
value
=
"/area/info"
)
@GetMapping
(
value
=
"/area/in
terin
fo"
)
String
viewAreaInfo
(
@RequestParam
(
value
=
"id"
)
Long
id
);
...
...
This diff is collapsed.
Click to expand it.
common-lib/src/main/java/com/mortals/xhx/feign/device/IDeviceFeign.java
View file @
d500463e
...
...
@@ -26,7 +26,7 @@ public interface IDeviceFeign extends IFeign {
* @param devicePdu
* @return
*/
@PostMapping
(
value
=
"/device/list"
)
@PostMapping
(
value
=
"/device/
inter
list"
)
Rest
<
RespData
<
List
<
DevicePdu
>>>
list
(
@RequestBody
DevicePdu
devicePdu
);
...
...
@@ -36,7 +36,7 @@ public interface IDeviceFeign extends IFeign {
* @param id
* @return
*/
@GetMapping
(
value
=
"/device/info"
)
@GetMapping
(
value
=
"/device/in
terin
fo"
)
Rest
<
DevicePdu
>
info
(
@RequestParam
(
value
=
"id"
)
Long
id
);
/**
...
...
This diff is collapsed.
Click to expand it.
common-lib/src/main/java/com/mortals/xhx/feign/product/IProductFeign.java
View file @
d500463e
...
...
@@ -22,7 +22,7 @@ public interface IProductFeign extends IFeign {
* @param productPdu
* @return
*/
@PostMapping
(
value
=
"/product/list"
)
@PostMapping
(
value
=
"/product/
inter
list"
)
Rest
<
RespData
<
List
<
ProductPdu
>>>
list
(
@RequestBody
ProductPdu
productPdu
);
}
...
...
This diff is collapsed.
Click to expand it.
common-lib/src/main/java/com/mortals/xhx/feign/user/IUserFeign.java
View file @
d500463e
...
...
@@ -29,7 +29,7 @@ public interface IUserFeign extends IFeign {
* @param userPdu
* @return
*/
@PostMapping
(
value
=
"/user/list"
)
@PostMapping
(
value
=
"/user/
inter
list"
)
Rest
<
RespData
<
List
<
UserPdu
>>>
list
(
@RequestBody
UserPdu
userPdu
);
...
...
@@ -39,7 +39,7 @@ public interface IUserFeign extends IFeign {
* @param id
* @return
*/
@GetMapping
(
value
=
"/user/info"
)
@GetMapping
(
value
=
"/user/in
terin
fo"
)
Rest
<
UserPdu
>
info
(
@RequestParam
(
value
=
"id"
)
Long
id
);
/**
...
...
This diff is collapsed.
Click to expand it.
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