Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
hg-smart
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
platform
hg-smart
Commits
a65df49c
Commit
a65df49c
authored
May 17, 2024
by
yukang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
合同管理
parent
b22eefd2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
HGPZTools.java
src/main/java/com/baosight/hggp/hg/pz/tools/HGPZTools.java
+4
-2
No files found.
src/main/java/com/baosight/hggp/hg/pz/tools/HGPZTools.java
View file @
a65df49c
...
@@ -435,19 +435,21 @@ public class HGPZTools {
...
@@ -435,19 +435,21 @@ public class HGPZTools {
}
}
}
}
public
static
class
HgPz005A
{
public
static
class
HgPz005A
{
/**
/**
* 通过存货编码查询存货工序*
* 通过存货编码查询存货工序*
*
* @param inventCode
* @param inventCode
* @return
* @return
*/
*/
public
static
List
<
HGPZ005A
>
queryByInventCode
(
String
inventCode
){
public
static
List
<
HGPZ005A
>
queryByInventCode
(
String
inventCode
)
{
AssertUtils
.
isEmpty
(
inventCode
,
"存货编码不能为空!"
);
AssertUtils
.
isEmpty
(
inventCode
,
"存货编码不能为空!"
);
Map
paramMap
=
new
HashMap
();
Map
paramMap
=
new
HashMap
();
paramMap
.
put
(
HGPZ005A
.
FIELD_INVENT_CODE
,
inventCode
);
paramMap
.
put
(
HGPZ005A
.
FIELD_INVENT_CODE
,
inventCode
);
List
<
HGPZ005A
>
results
=
DaoBase
.
getInstance
().
query
(
HGPZ005A
.
QUERY
,
paramMap
);
List
<
HGPZ005A
>
results
=
DaoBase
.
getInstance
().
query
(
HGPZ005A
.
QUERY
,
paramMap
);
return
CollectionUtils
.
isEmpty
(
results
)
?
null
:
results
;
return
CollectionUtils
.
isEmpty
(
results
)
?
null
:
results
;
}
}
}
}
}
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