Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
Y
YX_IDENT_beijing_auxiliary_YD
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhangyusheng
YX_IDENT_beijing_auxiliary_YD
Commits
5b5a3977
Commit
5b5a3977
authored
Jun 10, 2019
by
Administrator
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
查询返回登记修改
parent
f1512a97
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
TaskListApi.java
src/main/java/com/yxproject/start/api/TaskListApi.java
+7
-4
No files found.
src/main/java/com/yxproject/start/api/TaskListApi.java
View file @
5b5a3977
...
...
@@ -501,18 +501,21 @@ public class TaskListApi {
/**
* 查询重做返回登记任务单
* @param date
* @param startDate 查询起始时间
* @param endDate 查询结束时间
* @param requ
* @return
*/
@RequestMapping
(
"queryRedoTask"
)
public
List
<
Map
<
String
,
Object
>>
queryRedoTask
(
@RequestParam
(
"
date"
)
String
d
ate
,
HttpServletRequest
requ
)
{
public
List
<
Map
<
String
,
Object
>>
queryRedoTask
(
@RequestParam
(
"
startDate"
)
String
startDate
,
@RequestParam
(
"endDate"
)
String
endD
ate
,
HttpServletRequest
requ
)
{
String
remoteAddr
=
requ
.
getRemoteAddr
();
MDC
.
put
(
"ip"
,
remoteAddr
);
List
<
Map
<
String
,
Object
>>
maps
=
new
ArrayList
<>();
try
{
maps
=
taskListService
.
selectRedoTask
(
replaceDate
(
d
ate
));
maps
=
taskListService
.
selectRedoTask
(
replaceDate
(
startDate
),
replaceDate
(
endD
ate
));
}
catch
(
Exception
e
){
logger
.
error
(
"登记时间:"
+
d
ate
);
logger
.
error
(
"登记时间:"
+
startDate
+
"-------"
+
endD
ate
);
logger
.
error
(
"Exception 查询重做返回登记任务单异常"
,
e
);
}
return
maps
;
...
...
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