Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
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
haoban3.0
haoban-manage3.0
Commits
005c000a
Commit
005c000a
authored
Dec 16, 2021
by
fudahua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
待办-今日待办
parent
57355164
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
NotifyController.java
...om/gic/haoban/manage/web/controller/NotifyController.java
+4
-4
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/NotifyController.java
View file @
005c000a
...
...
@@ -43,10 +43,10 @@ public class NotifyController extends WebBaseController {
* @return
*/
@RequestMapping
(
"/commission/list"
)
public
Rest
Response
pendingList
(
@RequestBody
@Valid
PendingListQO
qo
)
{
public
Haoban
Response
pendingList
(
@RequestBody
@Valid
PendingListQO
qo
)
{
PendingListQDTO
pendingListQDTO
=
EntityUtil
.
changeEntityByOrika
(
PendingListQDTO
.
class
,
qo
);
ServiceResponse
<
Page
<
PendingTaskDetailDTO
>>
retPage
=
pendingTaskApiService
.
pagePendingTask
(
pendingListQDTO
,
qo
.
getBasePageInfo
());
return
RestResponse
.
success
(
retPage
.
getResult
());
return
resultResponse
(
HaoBanErrCode
.
ERR_1
,
retPage
.
getResult
());
}
/**
...
...
@@ -55,10 +55,10 @@ public class NotifyController extends WebBaseController {
* @return
*/
@RequestMapping
(
"/commission/today-list"
)
public
Rest
Response
pendingToday
(
@RequestBody
@Valid
CommonQO
qo
)
{
public
Haoban
Response
pendingToday
(
@RequestBody
@Valid
CommonQO
qo
)
{
ServiceResponse
<
List
<
PendingTaskDetailDTO
>>
response
=
pendingTaskApiService
.
listPendingTaskToday
(
qo
.
getEnterpriseId
(),
qo
.
getStoreId
(),
qo
.
getClerkId
(),
false
);
return
RestResponse
.
success
(
response
.
getResult
());
return
resultResponse
(
HaoBanErrCode
.
ERR_1
,
response
.
getResult
());
}
...
...
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