Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
long-tern-care-service
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
hubin
long-tern-care-service
Commits
0fee8a07
Commit
0fee8a07
authored
Apr 21, 2021
by
zhangch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
实体类生成
parent
38e8fd51
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
74 additions
and
0 deletions
+74
-0
ChCfgSrvDisableLevel.java
...ungraim/ltc/pojo/entity/disable/ChCfgSrvDisableLevel.java
+74
-0
No files found.
common/common-core/src/main/java/com/hungraim/ltc/pojo/entity/disable/ChCfgSrvDisableLevel.java
0 → 100644
View file @
0fee8a07
package
com
.
hungraim
.
ltc
.
pojo
.
entity
.
disable
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.KeySequence
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
lombok.Data
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
* CH_CFG_SRV_DISABLE_LEVEL
*
* @author zhangch
*/
@Data
@TableName
(
"CH_CFG_SRV_DISABLE_LEVEL"
)
@KeySequence
(
"SEQ_CH_CFG_SRV_DISABLE_LEVEL"
)
public
class
ChCfgSrvDisableLevel
implements
Serializable
{
/**
* 失能等级id
*/
@TableId
(
type
=
IdType
.
INPUT
)
private
Long
disableLevelId
;
/**
* 失能等级名称
*/
private
String
disableLevelName
;
/**
* 起始值是否包含 包含:0;不包含:1
*/
private
Short
startValueFlag
;
/**
* 起始值
*/
private
Short
startValue
;
/**
* 终止值是否包含 包含:0;不包含:1
*/
private
Short
endValueFlag
;
/**
* 终止值
*/
private
Short
endValue
;
/**
* 备注
*/
private
String
remark
;
/**
* 服务项目配置id
*/
private
Long
serviceId
;
/**
* 首次操作时间
*/
private
Date
fcd
;
/**
* 首次操作人
*/
private
Long
fcu
;
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