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
e978cb6d
Commit
e978cb6d
authored
Mar 27, 2025
by
王祖波
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加线上线下过滤
parent
8e0dba37
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
0 deletions
+29
-0
ContactOrderSearchQDTO.java
...aoban/manage/api/qdto/contact/ContactOrderSearchQDTO.java
+13
-0
TabContactOrderMapper.xml
...c/main/resources/mapper/contact/TabContactOrderMapper.xml
+3
-0
ContactOrderPageQO.java
.../gic/haoban/manage/web/qo/contact/ContactOrderPageQO.java
+13
-0
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/qdto/contact/ContactOrderSearchQDTO.java
View file @
e978cb6d
...
@@ -24,6 +24,11 @@ public class ContactOrderSearchQDTO implements Serializable {
...
@@ -24,6 +24,11 @@ public class ContactOrderSearchQDTO implements Serializable {
private
List
<
String
>
storeIdList
;
private
List
<
String
>
storeIdList
;
/**
/**
* 1 线上; 2 线下
*/
private
Integer
channelType
;
/**
* 导购搜索
* 导购搜索
*/
*/
private
String
clerkSearch
;
private
String
clerkSearch
;
...
@@ -62,6 +67,14 @@ public class ContactOrderSearchQDTO implements Serializable {
...
@@ -62,6 +67,14 @@ public class ContactOrderSearchQDTO implements Serializable {
this
.
storeIdList
=
storeIdList
;
this
.
storeIdList
=
storeIdList
;
}
}
public
Integer
getChannelType
()
{
return
channelType
;
}
public
void
setChannelType
(
Integer
channelType
)
{
this
.
channelType
=
channelType
;
}
public
String
getClerkSearch
()
{
public
String
getClerkSearch
()
{
return
clerkSearch
;
return
clerkSearch
;
}
}
...
...
haoban-manage3-service/src/main/resources/mapper/contact/TabContactOrderMapper.xml
View file @
e978cb6d
...
@@ -63,6 +63,9 @@
...
@@ -63,6 +63,9 @@
<if
test=
"search.clerkId != null and search.clerkId != ''"
>
<if
test=
"search.clerkId != null and search.clerkId != ''"
>
AND clerk_id = #{search.clerkId}
AND clerk_id = #{search.clerkId}
</if>
</if>
<if
test=
"search.channelType != null"
>
AND channel_type = #{search.channelType}
</if>
<if
test=
"search.storeIdList != null and search.storeIdList.size() > 0"
>
<if
test=
"search.storeIdList != null and search.storeIdList.size() > 0"
>
AND store_id IN
AND store_id IN
<foreach
item=
"storeId"
index=
"index"
collection=
"search.storeIdList"
open=
"("
separator=
","
close=
")"
>
<foreach
item=
"storeId"
index=
"index"
collection=
"search.storeIdList"
open=
"("
separator=
","
close=
")"
>
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/qo/contact/ContactOrderPageQO.java
View file @
e978cb6d
...
@@ -21,6 +21,11 @@ public class ContactOrderPageQO extends PageQo {
...
@@ -21,6 +21,11 @@ public class ContactOrderPageQO extends PageQo {
private
String
storeId
;
private
String
storeId
;
/**
/**
* 1 线上; 2 线下
*/
private
Integer
channelType
;
/**
* 开始时间
* 开始时间
*/
*/
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+8"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+8"
)
...
@@ -58,6 +63,14 @@ public class ContactOrderPageQO extends PageQo {
...
@@ -58,6 +63,14 @@ public class ContactOrderPageQO extends PageQo {
this
.
storeId
=
storeId
;
this
.
storeId
=
storeId
;
}
}
public
Integer
getChannelType
()
{
return
channelType
;
}
public
void
setChannelType
(
Integer
channelType
)
{
this
.
channelType
=
channelType
;
}
public
Date
getBeginTime
()
{
public
Date
getBeginTime
()
{
return
beginTime
;
return
beginTime
;
}
}
...
...
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