Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-api-boot-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-api-boot-master
Commits
5782ec9f
Commit
5782ec9f
authored
Mar 06, 2025
by
332784038@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
批量订单费用申请查询sql条件修改
parent
f71a1033
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
BatchOrderFeeApplyQueryVO.java
...rder/vo/batchOrderFeeApply/BatchOrderFeeApplyQueryVO.java
+1
-1
BatchOrderFeeApply.xml
...esources/mapper/batchOrderFeeApply/BatchOrderFeeApply.xml
+5
-2
No files found.
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/batchOrderFeeApply/BatchOrderFeeApplyQueryVO.java
View file @
5782ec9f
...
...
@@ -29,6 +29,6 @@ public class BatchOrderFeeApplyQueryVO {
private
Date
endCreateTime
;
@ApiModelProperty
(
value
=
"创建人"
)
private
String
creator
;
private
List
<
String
>
creatorList
;
}
yudao-module-order/yudao-module-order-core/src/main/resources/mapper/batchOrderFeeApply/BatchOrderFeeApply.xml
View file @
5782ec9f
...
...
@@ -38,8 +38,11 @@
<if
test=
"query.beginCreateTime != null and query.endCreateTime != null "
>
AND a.`create_time` between #{query.beginCreateTime} and #{query.endCreateTime}
</if>
<if
test=
"query.creator != null and query.creator != '' "
>
AND a.`creator` = #{query.creator}
<if
test=
"query.creatorList != null and query.creatorList.size > 0 "
>
AND a.`creator` in
<foreach
item=
"creator"
collection=
"query.creatorList"
open=
"("
close=
")"
separator=
","
>
#{creator}
</foreach>
</if>
</sql>
</mapper>
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