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
b769b9e0
Commit
b769b9e0
authored
May 11, 2021
by
zhangch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
接口调整,实体类生成
parent
0d578960
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
76 additions
and
3 deletions
+76
-3
ChCfgSrvMode.java
.../com/hungraim/ltc/pojo/entity/SysConfig/ChCfgSrvMode.java
+73
-0
SrvTaskMapper.xml
...rces/com/hungraim/ltc/governance/mapper/SrvTaskMapper.xml
+3
-3
No files found.
common/common-core/src/main/java/com/hungraim/ltc/pojo/entity/SysConfig/ChCfgSrvMode.java
0 → 100644
View file @
b769b9e0
package
com
.
hungraim
.
ltc
.
pojo
.
entity
.
SysConfig
;
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_MODE
* @author
*/
@Data
@TableName
(
"CH_CFG_SRV_MODE"
)
@KeySequence
(
"SEQ_CH_CFG_SRV_MODE"
)
public
class
ChCfgSrvMode
implements
Serializable
{
/**
* 服务方式id
*/
@TableId
(
type
=
IdType
.
INPUT
)
private
Long
modeId
;
/**
* 服务方式名称
*/
private
String
modeName
;
/**
* 备注
*/
private
String
remark
;
/**
* 服务项目配置id
*/
private
Long
serviceId
;
/**
* 首次操作时间
*/
private
Date
fcd
;
/**
* 首次操作人
*/
private
Long
fcu
;
/**
* 服务方式id
*/
private
Long
fndModeId
;
/**
* 待遇资格起始日规则(0:首次评估结论书打印次日)
*/
private
Short
treatmentStartQualif
;
/**
* 待遇享受起始日规则(0:首次评估结论书打印次日;1:签订服务协议后)
*/
private
Short
treatmentEnjoyQualif
;
/**
* 待遇备注
*/
private
String
treatmentRemark
;
private
static
final
long
serialVersionUID
=
1L
;
}
\ No newline at end of file
governance/src/main/resources/com/hungraim/ltc/governance/mapper/SrvTaskMapper.xml
View file @
b769b9e0
...
...
@@ -150,7 +150,7 @@
<select
id=
"getSrvTaskInfoList"
resultType=
"com.hungraim.ltc.pojo.vo.governance.SrvTaskInfoVO"
>
select task.program_id programId,
task.disab_info_id disabInfoId,
task.srv_task_id
program
Id,
task.srv_task_id
srvTask
Id,
--服务人员id
task.srv_emp_id srvEmpId,
--服务人员姓名
...
...
@@ -158,12 +158,12 @@
--服务人员资质id
emp.emp_type_id empTypeId,
--服务人员资质名称
empType.
emp_type_name
empTypeName,
empType.
TYPE_NAME
empTypeName,
--服务人员资质名称
task.STATUS taskStatus
from ch_srv_task task--服务计划
left join ch_srv_organ_emp emp on task.srv_emp_id = emp.emp_id--护理人员
left join
ch_emp_type empType on emp.emp_type_id = empType.emp_type
--护理人员资质
left join
CH_CFG_SRV_EMP_TYPE empType on emp.emp_type_id = empType.EMP_TYPE_ID
--护理人员资质
where task.program_id = #{programId}
</select>
...
...
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