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
341ae3b3
Commit
341ae3b3
authored
May 21, 2025
by
王祖波
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
潜客转化明细增加memberId入参
parent
c7552741
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
PotentialDataController.java
...age/web/controller/potential/PotentialDataController.java
+2
-0
ContactOrderPageQO.java
.../gic/haoban/manage/web/qo/contact/ContactOrderPageQO.java
+13
-0
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/potential/PotentialDataController.java
View file @
341ae3b3
...
...
@@ -76,6 +76,7 @@ public class PotentialDataController {
String
enterpriseId
=
contactOrderPageQO
.
getEnterpriseId
();
String
clerkId
=
contactOrderPageQO
.
getClerkId
();
String
storeId
=
contactOrderPageQO
.
getStoreId
();
String
memberId
=
contactOrderPageQO
.
getMemberId
();
List
<
String
>
storeIds
=
new
ArrayList
<>();
if
(
StringUtils
.
isNotBlank
(
clerkId
))
{
ClerkDTO
clerkDTO
=
clerkService
.
getclerkById
(
clerkId
);
...
...
@@ -102,6 +103,7 @@ public class PotentialDataController {
searchQDTO
.
setBeginTime
(
contactOrderPageQO
.
getBeginTime
());
searchQDTO
.
setEndTime
(
contactOrderPageQO
.
getEndTime
());
searchQDTO
.
setChannelType
(
contactOrderPageQO
.
getChannelType
());
searchQDTO
.
setMemberId
(
memberId
);
BasePageInfo
basePageInfo
=
contactOrderPageQO
.
getBasePageInfo
();
ServiceResponse
<
Page
<
ContactOrderDetailDTO
>>
serviceResponse
=
contactOrderApiService
.
pageContactOrder
(
enterpriseId
,
searchQDTO
,
basePageInfo
);
if
(!
serviceResponse
.
isSuccess
())
{
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/qo/contact/ContactOrderPageQO.java
View file @
341ae3b3
...
...
@@ -22,6 +22,11 @@ public class ContactOrderPageQO extends PageQo {
private
String
storeId
;
/**
* 会员id
*/
private
String
memberId
;
/**
* 1 线上; 2 线下
*/
private
Integer
channelType
;
...
...
@@ -64,6 +69,14 @@ public class ContactOrderPageQO extends PageQo {
this
.
storeId
=
storeId
;
}
public
String
getMemberId
()
{
return
memberId
;
}
public
void
setMemberId
(
String
memberId
)
{
this
.
memberId
=
memberId
;
}
public
Integer
getChannelType
()
{
return
channelType
;
}
...
...
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