Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
wms_api
Project
Project
Details
Activity
Releases
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
高宇
wms_api
Commits
fd170f8b
Commit
fd170f8b
authored
Dec 23, 2024
by
罗林杰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加字段
parent
f9051da6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
WmsGoodsLog.java
.../java/org/rcisoft/bus/wmsgoodslog/entity/WmsGoodsLog.java
+3
-0
WmsGoodsLogMapper.xml
...in/resources/mapper/bus/wmsGoodsLog/WmsGoodsLogMapper.xml
+5
-1
No files found.
src/main/java/org/rcisoft/bus/wmsgoodslog/entity/WmsGoodsLog.java
View file @
fd170f8b
...
...
@@ -81,5 +81,8 @@ public class WmsGoodsLog extends CyIdIncreEntity<WmsGoodsLog> {
@JsonIgnore
@TableField
(
exist
=
false
)
private
String
minNum
;
@TableField
(
exist
=
false
)
private
String
appCode
;
}
src/main/resources/mapper/bus/wmsGoodsLog/WmsGoodsLogMapper.xml
View file @
fd170f8b
...
...
@@ -112,7 +112,8 @@
wg.goods_style as goods_style,
wg.goods_norms as goods_norms,
wg.goods_size as goods_size,
wga.out_goods as out_goods
wga.out_goods as out_goods,
wga.app_code as app_code
from wms_goods_log wgl
left join wms_goods wg on wgl.goods_id = wg.business_id
left join wms_goods_apply wga on wgl.apply_id = wga.business_id
...
...
@@ -161,6 +162,9 @@
<if
test=
"entity.maxNum !=null and entity.maxNum != '' "
>
and wgl.goods_counts
<
= #{entity.maxNum}
</if>
<if
test=
"entity.appCode !=null and entity.appCode != '' "
>
and wga.app_code = #{entity.appCode}
</if>
<if
test=
"entity.minNum !=null and entity.minNum != '' "
>
and wgl.goods_counts
>
= #{entity.minNum}
</if>
...
...
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