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
a2502573
Commit
a2502573
authored
Jul 23, 2024
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
统计排除排队中呼叫转移的号码
parent
658d3acc
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
3 deletions
+13
-3
bill-manager/src/main/java/com/mortals/xhx/module/ph/model/vo/PhQueueStatVo.java
...ava/com/mortals/xhx/module/ph/model/vo/PhQueueStatVo.java
+2
-0
bill-manager/src/main/java/com/mortals/xhx/module/ph/model/vo/PhQueueVo.java
...in/java/com/mortals/xhx/module/ph/model/vo/PhQueueVo.java
+1
-0
bill-manager/src/main/java/com/mortals/xhx/module/ph/web/PhQueueController.java
...java/com/mortals/xhx/module/ph/web/PhQueueController.java
+8
-1
bill-manager/src/test/java/com/mortals/httpclient/system.http
...-manager/src/test/java/com/mortals/httpclient/system.http
+2
-2
No files found.
bill-manager/src/main/java/com/mortals/xhx/module/ph/model/vo/PhQueueStatVo.java
View file @
a2502573
...
...
@@ -46,4 +46,6 @@ public class PhQueueStatVo extends BaseEntityLong {
@JsonProperty
(
access
=
JsonProperty
.
Access
.
WRITE_ONLY
)
private
String
timeEnd
;
}
\ No newline at end of file
bill-manager/src/main/java/com/mortals/xhx/module/ph/model/vo/PhQueueVo.java
View file @
a2502573
...
...
@@ -36,5 +36,6 @@ public class PhQueueVo extends BaseEntityLong {
private
String
peoplePhone
;
private
List
<
String
>
formernumList
;
}
\ No newline at end of file
bill-manager/src/main/java/com/mortals/xhx/module/ph/web/PhQueueController.java
View file @
a2502573
...
...
@@ -3,6 +3,7 @@ package com.mortals.xhx.module.ph.web;
import
com.alibaba.fastjson.JSON
;
import
com.mortals.framework.annotation.UnAuth
;
import
com.mortals.framework.common.Rest
;
import
com.mortals.framework.exception.AppException
;
import
com.mortals.framework.service.ICacheService
;
import
com.mortals.framework.util.ThreadPool
;
import
com.mortals.framework.web.BaseCRUDJsonBodyMappingController
;
...
...
@@ -97,6 +98,13 @@ public class PhQueueController extends BaseCRUDJsonBodyMappingController<PhQueue
return
super
.
save
(
entity
);
}
@Override
protected
int
doListAfter
(
PhQueueEntity
query
,
Map
<
String
,
Object
>
model
,
Context
context
)
throws
AppException
{
query
.
setFormernumList
(
Arrays
.
asList
(
""
));
int
count
=
this
.
service
.
count
(
query
,
context
);
model
.
put
(
"count"
,
count
);
return
super
.
doListAfter
(
query
,
model
,
context
);
}
/**
* @param list
...
...
@@ -221,7 +229,6 @@ public class PhQueueController extends BaseCRUDJsonBodyMappingController<PhQueue
}*/
private
void
buildSiteBySideCode
(
PhQueueEntity
entity
)
{
RedisTemplate
<
String
,
String
>
baseRedisTemplate
=
cacheService
.
selectDbRedisTemplate
(
1
);
String
siteStr
=
(
String
)
baseRedisTemplate
.
opsForHash
().
get
(
"com:mortals:xhx:module:site:model:SiteEntity"
,
entity
.
getSiteCode
());
...
...
bill-manager/src/test/java/com/mortals/httpclient/system.http
View file @
a2502573
...
...
@@ -56,8 +56,8 @@ POST {{baseUrl}}/ph/queue/stat/stat
Content-Type: application/json
{
"taketimeStart": "2024-06-
01
",
"taketimeEnd": "2024-0
7-15
"
"taketimeStart": "2024-06-
24
",
"taketimeEnd": "2024-0
6-24
"
}
...
...
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