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
1f2eb1fb
Commit
1f2eb1fb
authored
May 06, 2021
by
zhangch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
实体类生成
parent
594ae640
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
222 additions
and
0 deletions
+222
-0
ChSrvOrganEmp.java
...hungraim/ltc/pojo/entity/serviceManage/ChSrvOrganEmp.java
+168
-0
ChSrvOrganEmpMapper.java
.../com/hungraim/ltc/governance/dao/ChSrvOrganEmpMapper.java
+12
-0
ChSrvOrganEmpMapper.xml
...om/hungraim/ltc/governance/mapper/ChSrvOrganEmpMapper.xml
+42
-0
No files found.
common/common-core/src/main/java/com/hungraim/ltc/pojo/entity/serviceManage/ChSrvOrganEmp.java
0 → 100644
View file @
1f2eb1fb
package
com
.
hungraim
.
ltc
.
pojo
.
entity
.
serviceManage
;
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_SRV_ORGAN_EMP
* @author
*/
@Data
@TableName
(
"CH_SRV_ORGAN_EMP"
)
@KeySequence
(
"SEQ_CH_SRV_ORGAN_EMP"
)
public
class
ChSrvOrganEmp
implements
Serializable
{
/**
* 护理人员id
*/
@TableId
(
type
=
IdType
.
INPUT
)
private
Long
empId
;
/**
* 护理人员姓名
*/
private
String
empName
;
/**
* 机构代码
*/
private
String
organId
;
/**
* 护理机构id
*/
private
Long
srvOrganId
;
/**
* 证件类型
*/
private
String
certifType
;
/**
* 证件号码
*/
private
String
certifNum
;
/**
* 性别 男:M;女:F;不确定 N
*/
private
String
gender
;
/**
* 年龄
*/
private
Short
age
;
/**
* 人员资质
*/
private
Long
empTypeId
;
/**
* 创建人
*/
private
Long
defineEmp
;
/**
* 创建时间
*/
private
Date
effTime
;
/**
* 终止人
*/
private
Long
endEmp
;
/**
* 终止时间
*/
private
Date
endTime
;
/**
* 首次操作时间
*/
private
Date
fcd
;
/**
* 首次操作人
*/
private
Long
fcu
;
/**
* 末次操作时间
*/
private
Date
lcd
;
/**
* 末次操作人
*/
private
Long
lcu
;
/**
* 是否失效 有效:0;失效:1
*/
private
Short
isLock
;
/**
* 数据来源 网厅:0,核心:1
*/
private
Short
dataFrom
;
/**
* 网厅创建人
*/
private
Long
webDefineEmp
;
/**
* 网厅终止人
*/
private
Long
webEndEmp
;
/**
* 用户类型 护理人员:0;管理人员:1
*/
private
Short
empType
;
/**
* 手机号码
*/
private
String
mobilePhone
;
/**
* 学历
*/
private
Long
eduId
;
/**
* 职称
*/
private
Long
acdeId
;
/**
* 一级人员资质
*/
private
Long
bigEmpTypeId
;
/**
* 服务配置模式ID
*/
private
Long
cfgModeId
;
/**
* 人员id
*/
private
Long
basicEmpId
;
/**
* 是否白名单 是:0;否:1
*/
private
Short
whiteList
;
private
static
final
long
serialVersionUID
=
1L
;
}
\ No newline at end of file
governance/src/main/java/com/hungraim/ltc/governance/dao/ChSrvOrganEmpMapper.java
0 → 100644
View file @
1f2eb1fb
package
com
.
hungraim
.
ltc
.
governance
.
dao
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.hungraim.ltc.pojo.entity.serviceManage.ChSrvOrganEmp
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.springframework.stereotype.Repository
;
@Mapper
@Repository
public
interface
ChSrvOrganEmpMapper
extends
BaseMapper
<
ChSrvOrganEmp
>
{
}
\ No newline at end of file
governance/src/main/resources/com/hungraim/ltc/governance/mapper/ChSrvOrganEmpMapper.xml
0 → 100644
View file @
1f2eb1fb
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.hungraim.ltc.governance.dao.ChSrvOrganEmpMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.hungraim.ltc.pojo.entity.serviceManage.ChSrvOrganEmp"
>
<id
column=
"EMP_ID"
jdbcType=
"DECIMAL"
property=
"empId"
/>
<result
column=
"EMP_NAME"
jdbcType=
"VARCHAR"
property=
"empName"
/>
<result
column=
"ORGAN_ID"
jdbcType=
"VARCHAR"
property=
"organId"
/>
<result
column=
"SRV_ORGAN_ID"
jdbcType=
"DECIMAL"
property=
"srvOrganId"
/>
<result
column=
"CERTIF_TYPE"
jdbcType=
"VARCHAR"
property=
"certifType"
/>
<result
column=
"CERTIF_NUM"
jdbcType=
"VARCHAR"
property=
"certifNum"
/>
<result
column=
"GENDER"
jdbcType=
"VARCHAR"
property=
"gender"
/>
<result
column=
"AGE"
jdbcType=
"DECIMAL"
property=
"age"
/>
<result
column=
"EMP_TYPE_ID"
jdbcType=
"DECIMAL"
property=
"empTypeId"
/>
<result
column=
"DEFINE_EMP"
jdbcType=
"DECIMAL"
property=
"defineEmp"
/>
<result
column=
"EFF_TIME"
jdbcType=
"TIMESTAMP"
property=
"effTime"
/>
<result
column=
"END_EMP"
jdbcType=
"DECIMAL"
property=
"endEmp"
/>
<result
column=
"END_TIME"
jdbcType=
"TIMESTAMP"
property=
"endTime"
/>
<result
column=
"FCD"
jdbcType=
"TIMESTAMP"
property=
"fcd"
/>
<result
column=
"FCU"
jdbcType=
"DECIMAL"
property=
"fcu"
/>
<result
column=
"LCD"
jdbcType=
"TIMESTAMP"
property=
"lcd"
/>
<result
column=
"LCU"
jdbcType=
"DECIMAL"
property=
"lcu"
/>
<result
column=
"IS_LOCK"
jdbcType=
"DECIMAL"
property=
"isLock"
/>
<result
column=
"DATA_FROM"
jdbcType=
"DECIMAL"
property=
"dataFrom"
/>
<result
column=
"WEB_DEFINE_EMP"
jdbcType=
"DECIMAL"
property=
"webDefineEmp"
/>
<result
column=
"WEB_END_EMP"
jdbcType=
"DECIMAL"
property=
"webEndEmp"
/>
<result
column=
"EMP_TYPE"
jdbcType=
"DECIMAL"
property=
"empType"
/>
<result
column=
"MOBILE_PHONE"
jdbcType=
"VARCHAR"
property=
"mobilePhone"
/>
<result
column=
"EDU_ID"
jdbcType=
"DECIMAL"
property=
"eduId"
/>
<result
column=
"ACDE_ID"
jdbcType=
"DECIMAL"
property=
"acdeId"
/>
<result
column=
"BIG_EMP_TYPE_ID"
jdbcType=
"DECIMAL"
property=
"bigEmpTypeId"
/>
<result
column=
"CFG_MODE_ID"
jdbcType=
"DECIMAL"
property=
"cfgModeId"
/>
<result
column=
"BASIC_EMP_ID"
jdbcType=
"DECIMAL"
property=
"basicEmpId"
/>
<result
column=
"WHITE_LIST"
jdbcType=
"DECIMAL"
property=
"whiteList"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
EMP_ID, EMP_NAME, ORGAN_ID, SRV_ORGAN_ID, CERTIF_TYPE, CERTIF_NUM, GENDER, AGE, EMP_TYPE_ID,
DEFINE_EMP, EFF_TIME, END_EMP, END_TIME, FCD, FCU, LCD, LCU, IS_LOCK, DATA_FROM,
WEB_DEFINE_EMP, WEB_END_EMP, EMP_TYPE, MOBILE_PHONE, EDU_ID, ACDE_ID, BIG_EMP_TYPE_ID,
CFG_MODE_ID, BASIC_EMP_ID, WHITE_LIST
</sql>
</mapper>
\ 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