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
eebe0cc3
Commit
eebe0cc3
authored
Sep 26, 2024
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
导购任务-查询绑定导购
parent
2b3945a8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
13 deletions
+17
-13
ClerkTaskController.java
.../manage/web/controller/clerktask/ClerkTaskController.java
+5
-1
ClerkTaskListQO.java
...m/gic/haoban/manage/web/qo/clerktask/ClerkTaskListQO.java
+12
-12
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/clerktask/ClerkTaskController.java
View file @
eebe0cc3
...
...
@@ -101,7 +101,11 @@ public class ClerkTaskController {
@ResponseBody
public
RestResponse
<
TaskPlanDetailVO
>
taskDetail
(
String
enterprsieId
,
Long
planId
,
String
clerkId
)
{
TaskPlanDetailVO
vo
=
new
TaskPlanDetailVO
()
;
this
.
clerkTaskApiService
.
getDetail
(
enterprsieId
,
planId
,
0
)
;
ServiceResponse
<
ClerkTaskPlanDTO
>
resp
=
this
.
clerkTaskApiService
.
getDetail
(
enterprsieId
,
planId
,
0
)
;
if
(!
resp
.
isSuccess
())
{
return
RestResponse
.
failure
(
"9999"
,
resp
.
getMessage
())
;
}
vo
=
EntityUtil
.
changeEntityByJSON
(
TaskPlanDetailVO
.
class
,
resp
.
getResult
());
return
RestResponse
.
successResult
(
vo
)
;
}
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/qo/clerktask/ClerkTaskListQO.java
View file @
eebe0cc3
...
...
@@ -7,7 +7,7 @@ import java.io.Serializable;
public
class
ClerkTaskListQO
extends
BasePageInfo
implements
Serializable
{
// 1未开始 2进行中 3已结束 4已过期
private
int
status
;
private
Integer
status
=
-
1
;
/**
* 任务名称/id
...
...
@@ -26,21 +26,13 @@ public class ClerkTaskListQO extends BasePageInfo implements Serializable {
/**
* 0全部 1召回 2企微 3内容
*/
private
Integer
taskType
;
private
Integer
taskType
=
0
;
public
int
getTaskType
()
{
return
taskType
;
}
public
void
setTaskType
(
int
taskType
)
{
this
.
taskType
=
taskType
;
}
public
int
getStatus
()
{
public
Integer
getStatus
()
{
return
status
;
}
public
void
setStatus
(
int
status
)
{
public
void
setStatus
(
Integer
status
)
{
this
.
status
=
status
;
}
...
...
@@ -67,4 +59,12 @@ public class ClerkTaskListQO extends BasePageInfo implements Serializable {
public
void
setEnterpriseId
(
String
enterpriseId
)
{
this
.
enterpriseId
=
enterpriseId
;
}
public
Integer
getTaskType
()
{
return
taskType
;
}
public
void
setTaskType
(
Integer
taskType
)
{
this
.
taskType
=
taskType
;
}
}
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