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
6adaece1
Commit
6adaece1
authored
Feb 26, 2021
by
hzc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
数据项审核意见记录
parent
3112e749
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
107 additions
and
1 deletion
+107
-1
BaseIndDefRecord.java
.../indicators/model/entity/indicators/BaseIndDefRecord.java
+107
-0
BaseIndDefRecordMapper.java
...ators/model/mapper/indicators/BaseIndDefRecordMapper.java
+0
-1
No files found.
src/main/java/com/keymobile/indicators/model/entity/indicators/BaseIndDefRecord.java
0 → 100644
View file @
6adaece1
package
com
.
keymobile
.
indicators
.
model
.
entity
.
indicators
;
import
javax.persistence.*
;
import
java.io.Serializable
;
import
lombok.Data
;
import
lombok.Getter
;
import
lombok.Setter
;
import
lombok.ToString
;
import
java.util.Date
;
/**
* @Description
* @Author hzc
* @Date 2021-02-26
*/
@Table
(
name
=
"base_ind_def_record"
)
public
class
BaseIndDefRecord
implements
Serializable
{
private
static
final
long
serialVersionUID
=
6531706127810161760L
;
/**
* Id
*/
@Id
@GeneratedValue
(
strategy
=
GenerationType
.
IDENTITY
)
@Column
(
name
=
"id"
)
private
Integer
id
;
/**
* 数据项id
*/
@Column
(
name
=
"ind_id"
)
private
String
indId
;
/**
* 状态1待提交,2待审核,3审核通过,4驳回
*/
@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
String
getIndId
()
{
return
indId
;
}
public
void
setIndId
(
String
indId
)
{
this
.
indId
=
indId
;
}
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
;
}
}
src/main/java/com/keymobile/indicators/model/mapper/indicators/BaseIndDefRecordMapper.java
View file @
6adaece1
...
...
@@ -6,7 +6,6 @@ import tk.mybatis.mapper.common.BaseMapper;
/**
* TODO
*
* @author hzc
* @version 1.0
* @date 2021/2/26
...
...
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