Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
T
test
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
邬友楠
test
Commits
6d6e0b1e
Commit
6d6e0b1e
authored
Apr 22, 2021
by
李驰骋
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加编码回收表
parent
2a80034c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
0 deletions
+57
-0
CodeRecycle.java
...igou/uasp/bmp/configuration/domain/model/CodeRecycle.java
+57
-0
No files found.
huigou-uasp/src/main/java/com/huigou/uasp/bmp/configuration/domain/model/CodeRecycle.java
0 → 100644
View file @
6d6e0b1e
package
com
.
huigou
.
uasp
.
bmp
.
configuration
.
domain
.
model
;
import
com.huigou.data.domain.model.AbstractEntity
;
import
lombok.Getter
;
import
lombok.Setter
;
import
javax.persistence.Column
;
import
javax.persistence.Entity
;
import
javax.persistence.Table
;
import
java.util.Date
;
/**
* 自定义编码值回收
* @ Author: chicheng.li
* @ Date : 16:42 2021/4/7
*/
@Getter
@Setter
@Entity
@Table
(
name
=
"SA_CODE_RECYCLE"
)
public
class
CodeRecycle
extends
AbstractEntity
{
/**
* 回收编号值
*/
@Column
(
name
=
"CODE_NO"
,
length
=
100
)
private
String
codeNo
;
/**
* 对应配置编号
*/
private
String
code
;
/**
* 是否再次利用
*/
@Column
(
name
=
"IS_RECYCLE"
,
length
=
20
)
private
String
isRecycle
;
/**
* 再次使用时间
*/
@Column
(
name
=
"USE_DATE"
)
private
Date
useDate
;
/**
* 创建时间
*/
@Column
(
name
=
"CREATED_DATE"
)
private
Date
createdDate
;
/**
* 创建人ID
*/
@Column
(
name
=
"CREATED_BY_ID"
)
private
String
createdById
;
/**
* 创建人
*/
@Column
(
name
=
"CREATED_BY_NAME"
)
private
String
createdByName
;
}
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