Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
T
topsun-bpm
Project
Project
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
鲁鑫
topsun-bpm
Commits
0e802bc6
Commit
0e802bc6
authored
Dec 08, 2023
by
鲁鑫
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
尺码组实体
parent
97397444
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
0 deletions
+46
-0
SizeGroup.java
...main/java/com/huigou/topsun/product/domain/SizeGroup.java
+46
-0
No files found.
topsun/src/main/java/com/huigou/topsun/product/domain/SizeGroup.java
0 → 100644
View file @
0e802bc6
package
com
.
huigou
.
topsun
.
product
.
domain
;
import
java.io.Serializable
;
import
javax.persistence.Column
;
import
javax.persistence.GeneratedValue
;
import
javax.persistence.Id
;
import
javax.persistence.Table
;
import
lombok.Data
;
import
org.hibernate.annotations.GenericGenerator
;
/**
* 尺码组主表
* @TableName size_group
*/
@Table
(
name
=
"size_group"
)
@Data
public
class
SizeGroup
implements
Serializable
{
/**
* 尺码组id
*/
@Id
@GeneratedValue
(
generator
=
"system-uuid"
)
@GenericGenerator
(
name
=
"system-uuid"
,
strategy
=
"guid"
)
@Column
(
name
=
"size_group_id"
)
private
String
sizeGroupId
;
/**
* 尺码组名称
*/
@Column
(
name
=
"size_group_name"
)
private
String
sizeGroupName
;
/**
* 尺码组编码
*/
@Column
(
name
=
"size_group_code"
)
private
String
sizeGroupCode
;
/**
* 尺码组类型
*/
@Column
(
name
=
"size_group_type"
)
private
String
sizeGroupType
;
private
static
final
long
serialVersionUID
=
1L
;
}
\ No newline at end of file
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