Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
peizhen-java
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PeiZhen-Java
peizhen-java
Commits
a2433cd3
Commit
a2433cd3
authored
Oct 10, 2023
by
邹磊浩
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改代码
parent
bc11f3bc
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
pz-system/src/main/resources/mapper/system/TotalOrderMapper.xml
+6
-2
No files found.
pz-system/src/main/resources/mapper/system/TotalOrderMapper.xml
View file @
a2433cd3
...
@@ -134,7 +134,9 @@
...
@@ -134,7 +134,9 @@
AND t.`status` = 2
AND t.`status` = 2
AND DATE (t.finish_time) = DATE (#{time})
AND DATE (t.finish_time) = DATE (#{time})
<if
test=
"emIds != null and emIds.size() > 0"
>
<if
test=
"emIds != null and emIds.size() > 0"
>
AND t.em_id IN(#{emIds})
AND t.em_id in
<foreach
item=
"item"
collection=
"emIds"
index=
"index"
open=
"("
separator=
","
close=
")"
>
#{item}
</foreach>
</if>
</if>
GROUP BY b.id;
GROUP BY b.id;
</select>
</select>
...
@@ -143,7 +145,9 @@
...
@@ -143,7 +145,9 @@
WHERE business_id = 0 AND `status` = 2
WHERE business_id = 0 AND `status` = 2
AND DATE (finish_time) = DATE (#{time})
AND DATE (finish_time) = DATE (#{time})
<if
test=
"emIds != null and emIds.size() > 0"
>
<if
test=
"emIds != null and emIds.size() > 0"
>
AND em_id IN(#{emIds})
AND em_id in
<foreach
item=
"item"
collection=
"emIds"
index=
"index"
open=
"("
separator=
","
close=
")"
>
#{item}
</foreach>
</if>
</if>
</select>
</select>
<select
id=
"selectPlatformCom"
resultType=
"com.pz.system.domain.vo.DataOrderVo"
>
<select
id=
"selectPlatformCom"
resultType=
"com.pz.system.domain.vo.DataOrderVo"
>
...
...
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