|
@@ -684,7 +684,9 @@
|
|
|
a.*, u.linkman,
|
|
|
appeal.id appealInfoId,
|
|
|
appeal.appeal_operation_type appealOperationType,
|
|
|
- appeal.example_status exampleStatus
|
|
|
+ appeal.example_status exampleStatus,
|
|
|
+ appeal.reviewer,
|
|
|
+ appeal.exampleDate
|
|
|
FROM
|
|
|
(
|
|
|
SELECT DISTINCT
|
|
@@ -742,10 +744,14 @@
|
|
|
appeal.behospital_code,
|
|
|
appeal.hospital_id,
|
|
|
appeal.appeal_operation_type,
|
|
|
- examine.example_status
|
|
|
+ examine.example_status,
|
|
|
+ u.linkman reviewer,
|
|
|
+ examine.gmt_create exampleDate
|
|
|
FROM
|
|
|
med_appeal_info appeal
|
|
|
JOIN med_appeal_examine_info examine ON examine.appeal_info_id = appeal.id
|
|
|
+ LEFT JOIN sys_user u ON appeal.check_id = u.id
|
|
|
+ AND u.is_deleted = 'N'
|
|
|
WHERE
|
|
|
appeal.is_deleted = 'N'
|
|
|
) appeal ON a.cases_entry_id = appeal.cases_entry_id
|