Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bill-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
赵啸非
bill-platform
Commits
fa6dead4
Commit
fa6dead4
authored
Jun 21, 2024
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加重复订单请求
parent
16ed8146
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
4 deletions
+16
-4
bill-manager/src/main/java/com/mortals/xhx/module/ph/web/PhQueueController.java
...java/com/mortals/xhx/module/ph/web/PhQueueController.java
+5
-0
bill-manager/src/main/java/com/mortals/xhx/module/pj/web/PjEvaluateController.java
...a/com/mortals/xhx/module/pj/web/PjEvaluateController.java
+8
-1
bill-manager/src/test/java/com/mortals/httpclient/pj/PjEvaluateController.http
.../java/com/mortals/httpclient/pj/PjEvaluateController.http
+3
-3
No files found.
bill-manager/src/main/java/com/mortals/xhx/module/ph/web/PhQueueController.java
View file @
fa6dead4
...
...
@@ -60,6 +60,8 @@ public class PhQueueController extends BaseCRUDJsonBodyMappingController<PhQueue
private
ICacheService
cacheService
;
@Autowired
private
ISiteFeign
siteFeign
;
@Autowired
private
PhQueueService
phQueueService
;
public
PhQueueController
()
{
super
.
setModuleDesc
(
"排号汇总"
);
...
...
@@ -111,6 +113,9 @@ public class PhQueueController extends BaseCRUDJsonBodyMappingController<PhQueue
getSite
(
entity
);
}
removeDuplicate
(
list
);
if
(!
ObjectUtils
.
isEmpty
(
list
))
return
;
phQueueService
.
save
(
list
);
}
};
ThreadPool
.
getInstance
().
execute
(
runnable
);
...
...
bill-manager/src/main/java/com/mortals/xhx/module/pj/web/PjEvaluateController.java
View file @
fa6dead4
...
...
@@ -59,6 +59,9 @@ public class PjEvaluateController extends BaseCRUDJsonBodyMappingController<PjEv
@Autowired
private
ICacheService
cacheService
;
@Autowired
private
PjEvaluateService
pjEvaluateService
;
public
PjEvaluateController
()
{
super
.
setModuleDesc
(
"评价汇总"
);
...
...
@@ -107,13 +110,17 @@ public class PjEvaluateController extends BaseCRUDJsonBodyMappingController<PjEv
//线程保存
Runnable
runnable
=
new
Runnable
()
{
private
PjEvaluateService
pjEvaluateService
;
@Override
public
void
run
()
{
for
(
PjEvaluateEntity
entity
:
list
)
{
getSite
(
entity
);
}
removeDuplicate
(
list
);
if
(!
ObjectUtils
.
isEmpty
(
list
))
return
;
pjEvaluateService
.
save
(
list
);
}
};
...
...
bill-manager/src/test/java/com/mortals/httpclient/pj/PjEvaluateController.http
View file @
fa6dead4
...
...
@@ -58,7 +58,7 @@ Content-Type: application/json
"siteId":1,
"siteCode":"511500000000-0001",
"siteName":"智慧排队管理服务系统",
"extNum":"511500000000-0001-4"
"extNum":"511500000000-0001-4
1
"
}
> {%
...
...
@@ -102,7 +102,7 @@ Content-Type: application/json
"siteId":1,
"siteCode":"511500000000-0001",
"siteName":"智慧排队管理服务系统",
"extNum":"511500000000-0001-5"
"extNum":"511500000000-0001-5
1
"
},
{
"peopleIdcard":"bdQuCS",
...
...
@@ -135,7 +135,7 @@ Content-Type: application/json
"siteId":1,
"siteCode":"511500000000-0001",
"siteName":"智慧排队管理服务系统",
"extNum":"511500000000-0001-7"
"extNum":"511500000000-0001-7
1
"
}]
###评价汇总查看
...
...
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