Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
indicators
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
zhangkb
indicators
Commits
5d183613
Commit
5d183613
authored
Nov 19, 2020
by
hzc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
漏传了短板检查记录实体类
parent
1351eddf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
108 additions
and
0 deletions
+108
-0
ShortBoardAuditRecord.java
...cators/model/entity/shortboard/ShortBoardAuditRecord.java
+108
-0
No files found.
src/main/java/com/keymobile/indicators/model/entity/shortboard/ShortBoardAuditRecord.java
0 → 100644
View file @
5d183613
package
com
.
keymobile
.
indicators
.
model
.
entity
.
shortboard
;
import
lombok.Data
;
import
javax.persistence.*
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
* @Description
* @Author hzc
* @Date 2020-11-19
*/
@Table
(
name
=
"short_board_audit_record"
)
public
class
ShortBoardAuditRecord
implements
Serializable
{
private
static
final
long
serialVersionUID
=
919987520126214297L
;
/**
* Id
*/
@Id
@GeneratedValue
(
strategy
=
GenerationType
.
IDENTITY
)
@Column
(
name
=
"id"
)
private
Integer
id
;
/**
* 短板清单ID
*/
@Column
(
name
=
"short_task_id"
)
private
Integer
shortTaskId
;
/**
* 状态
*/
@Column
(
name
=
"status"
)
private
Integer
status
;
/**
* 检查意见
*/
@Column
(
name
=
"description"
)
private
String
description
;
/**
* 检查者
*/
@Column
(
name
=
"create_user"
)
private
String
createUser
;
/**
* 检查时间
*/
@Column
(
name
=
"create_time"
)
private
Date
createTime
;
public
Integer
getId
()
{
return
id
;
}
public
void
setId
(
Integer
id
)
{
this
.
id
=
id
;
}
public
Integer
getShortTaskId
()
{
return
shortTaskId
;
}
public
void
setShortTaskId
(
Integer
shortTaskId
)
{
this
.
shortTaskId
=
shortTaskId
;
}
public
Integer
getStatus
()
{
return
status
;
}
public
void
setStatus
(
Integer
status
)
{
this
.
status
=
status
;
}
public
String
getDescription
()
{
return
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
String
getCreateUser
()
{
return
createUser
;
}
public
void
setCreateUser
(
String
createUser
)
{
this
.
createUser
=
createUser
;
}
public
Date
getCreateTime
()
{
return
createTime
;
}
public
void
setCreateTime
(
Date
createTime
)
{
this
.
createTime
=
createTime
;
}
}
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