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
53f55052
Commit
53f55052
authored
May 29, 2024
by
wuwenlong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
报工生成工序质检
parent
a5a20c05
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
45 additions
and
0 deletions
+45
-0
CheckStatusEnum.java
src/main/java/com/baosight/hggp/common/CheckStatusEnum.java
+45
-0
HGZL002.java
src/main/java/com/baosight/hggp/hg/zl/domain/HGZL002.java
+0
-0
HGZL002.xml
src/main/java/com/baosight/hggp/hg/zl/sql/HGZL002.xml
+0
-0
No files found.
src/main/java/com/baosight/hggp/common/CheckStatusEnum.java
0 → 100644
View file @
53f55052
package
com
.
baosight
.
hggp
.
common
;
/**
* @author wwl
* @version 1.0 2024/5/21
*/
public
enum
CheckStatusEnum
{
CHECKING
(
0
,
"质检中"
),
CHECKED
(
1
,
"质检完成"
);
private
Integer
code
;
private
String
value
;
CheckStatusEnum
(
Integer
code
,
String
value
)
{
this
.
code
=
code
;
this
.
value
=
value
;
}
public
static
CheckStatusEnum
getEnumByCode
(
Integer
code
){
for
(
CheckStatusEnum
en
:
CheckStatusEnum
.
values
()){
if
(
code
.
compareTo
(
en
.
code
)==
0
){
return
en
;
}
}
return
null
;
}
public
Integer
getCode
()
{
return
code
;
}
public
void
setCode
(
Integer
code
)
{
this
.
code
=
code
;
}
public
String
getValue
()
{
return
value
;
}
public
void
setValue
(
String
value
)
{
this
.
value
=
value
;
}
}
src/main/java/com/baosight/hggp/hg/zl/domain/HGZL002.java
0 → 100644
View file @
53f55052
This diff is collapsed.
Click to expand it.
src/main/java/com/baosight/hggp/hg/zl/sql/HGZL002.xml
0 → 100644
View file @
53f55052
This diff is collapsed.
Click to expand it.
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