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
8f4599fc
Commit
8f4599fc
authored
Aug 16, 2024
by
宋祥
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://git.pseer.com:8800/platform/hg-smart
into dev
parents
500cf1dc
2a2a2a2f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
ServiceHGPZ005.java
.../java/com/baosight/hggp/hg/pz/service/ServiceHGPZ005.java
+1
-0
HGPZTools.java
src/main/java/com/baosight/hggp/hg/pz/tools/HGPZTools.java
+13
-4
No files found.
src/main/java/com/baosight/hggp/hg/pz/service/ServiceHGPZ005.java
View file @
8f4599fc
...
@@ -418,6 +418,7 @@ public class ServiceHGPZ005 extends ServiceBase {
...
@@ -418,6 +418,7 @@ public class ServiceHGPZ005 extends ServiceBase {
for
(
Map
resultRow
:
resultRows
)
{
for
(
Map
resultRow
:
resultRows
)
{
HGPZ005
hgpz005
=
new
HGPZ005
();
HGPZ005
hgpz005
=
new
HGPZ005
();
hgpz005
.
fromMap
(
resultRow
);
hgpz005
.
fromMap
(
resultRow
);
hgpz005
=
HGPZTools
.
HgPz005
.
getById
(
hgpz005
.
getId
());
HGSJ002
hgsj002
=
new
HGSJ002
();
HGSJ002
hgsj002
=
new
HGSJ002
();
hgsj002
.
fromMap
((
Map
)
resultRow
.
get
(
"flow"
));
hgsj002
.
fromMap
((
Map
)
resultRow
.
get
(
"flow"
));
...
...
src/main/java/com/baosight/hggp/hg/pz/tools/HGPZTools.java
View file @
8f4599fc
...
@@ -8,10 +8,7 @@ import com.baosight.hggp.core.dao.DaoUtils;
...
@@ -8,10 +8,7 @@ import com.baosight.hggp.core.dao.DaoUtils;
import
com.baosight.hggp.core.enums.ValidFlagEnum
;
import
com.baosight.hggp.core.enums.ValidFlagEnum
;
import
com.baosight.hggp.hg.constant.HGConstant
;
import
com.baosight.hggp.hg.constant.HGConstant
;
import
com.baosight.hggp.hg.pz.domain.*
;
import
com.baosight.hggp.hg.pz.domain.*
;
import
com.baosight.hggp.hg.sc.domain.HGSC001A
;
import
com.baosight.hggp.hg.sc.domain.*
;
import
com.baosight.hggp.hg.sc.domain.HGSC005A
;
import
com.baosight.hggp.hg.sc.domain.HGSC009
;
import
com.baosight.hggp.hg.sc.domain.HGSC009A
;
import
com.baosight.hggp.hg.sj.domain.HGSJ003
;
import
com.baosight.hggp.hg.sj.domain.HGSJ003
;
import
com.baosight.hggp.util.*
;
import
com.baosight.hggp.util.*
;
import
com.baosight.iplat4j.common.ed.domain.TEDCM01
;
import
com.baosight.iplat4j.common.ed.domain.TEDCM01
;
...
@@ -258,6 +255,18 @@ public class HGPZTools {
...
@@ -258,6 +255,18 @@ public class HGPZTools {
/**
/**
* 查询
* 查询
*
*
* @param id
* @return
*/
public
static
HGPZ005
getById
(
Long
id
)
{
AssertUtils
.
isTrue
(
Objects
.
isNull
(
id
)||
id
<=
0
,
"存货档案ID不能为空!"
);
HGPZ005
result
=
(
HGPZ005
)
DaoBase
.
getInstance
().
get
(
HGPZ005
.
QUERY
,
HGPZ005
.
FIELD_ID
,
id
);
return
result
;
}
/**
* 查询
*
* @param ids
* @param ids
* @return
* @return
*/
*/
...
...
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