From c2dc74922a13bf92136c26ddc6573590ff09f32c Mon Sep 17 00:00:00 2001 From: youxilong Date: Sun, 7 Apr 2024 14:00:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=BA=E5=B7=A5=E9=9A=8F=E8=AE=BF=E5=A4=84?= =?UTF-8?q?=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SignPatientManageRouteController.java | 18 ++++++ .../dto/manualfollowup/ManualFollowUpDTO.java | 4 +- .../PatientQuestionSubjectResultDTO.java | 22 +++++++ .../PatientQuestionSubmitResultDTO.java | 27 ++++++++ .../PatientQuestionSubmitResultMapper.java | 6 +- .../SignPatientManageRouteMapper.java | 7 +++ .../PatientTaskExecuteRecordServiceImpl.java | 2 +- .../ISignPatientManageRouteService.java | 14 +++++ .../SignPatientManageRouteServiceImpl.java | 36 ++++++++++- .../manualfollowup/ManualFollowPatientVO.java | 61 +++++++++++++++++++ .../vo/manualfollowup/ManualFollowUpVO.java | 21 ++++++- ...va => PatientQuestionSubjectResultVO.java} | 2 +- ...ava => PatientQuestionSubmitResultVO.java} | 6 +- .../PatientQuestionSubmitResultMapper.xml | 6 +- .../SignPatientManageRouteMapper.xml | 37 +++++++++-- 15 files changed, 247 insertions(+), 22 deletions(-) create mode 100644 postdischarge-manage/src/main/java/com/xinelu/manage/dto/patientquestionsubjectresult/PatientQuestionSubjectResultDTO.java create mode 100644 postdischarge-manage/src/main/java/com/xinelu/manage/dto/patientquestionsubmitresult/PatientQuestionSubmitResultDTO.java create mode 100644 postdischarge-manage/src/main/java/com/xinelu/manage/vo/manualfollowup/ManualFollowPatientVO.java rename postdischarge-manage/src/main/java/com/xinelu/manage/vo/patientquestionsubjectresult/{PatientQuestionSubjectResultDTO.java => PatientQuestionSubjectResultVO.java} (89%) rename postdischarge-manage/src/main/java/com/xinelu/manage/vo/patientquestionsubmitresult/{PatientQuestionSubmitResultDTO.java => PatientQuestionSubmitResultVO.java} (82%) diff --git a/postdischarge-manage/src/main/java/com/xinelu/manage/controller/signpatientmanageroute/SignPatientManageRouteController.java b/postdischarge-manage/src/main/java/com/xinelu/manage/controller/signpatientmanageroute/SignPatientManageRouteController.java index 7f19c915..bda7141e 100644 --- a/postdischarge-manage/src/main/java/com/xinelu/manage/controller/signpatientmanageroute/SignPatientManageRouteController.java +++ b/postdischarge-manage/src/main/java/com/xinelu/manage/controller/signpatientmanageroute/SignPatientManageRouteController.java @@ -8,6 +8,7 @@ import com.xinelu.common.enums.BusinessType; import com.xinelu.common.utils.poi.ExcelUtil; import com.xinelu.manage.domain.signpatientmanageroute.SignPatientManageRoute; import com.xinelu.manage.dto.manualfollowup.ManualFollowUpDTO; +import com.xinelu.manage.dto.patientquestionsubmitresult.PatientQuestionSubmitResultDTO; import com.xinelu.manage.service.signpatientmanageroute.ISignPatientManageRouteService; import com.xinelu.manage.vo.manualfollowup.ManualFollowUpVO; import com.xinelu.manage.vo.signpatientmanageroute.SignPatientManageRouteVO; @@ -102,4 +103,21 @@ public class SignPatientManageRouteController extends BaseController { return getDataTable(list); } + /** + * 查询人工随访患者基本信息 + */ + @GetMapping("/selectFollowPatientInfo/{id}") + public AjaxResult selectFollowPatientInfo(@PathVariable Long id) { + return signPatientManageRouteService.selectFollowPatientInfo(id); + } + + /** + * 人工随访代办处理 + */ + @PostMapping("/addPatientQuestionResult") + public AjaxResult addPatientQuestionResult(@RequestBody PatientQuestionSubmitResultDTO dto) { + return signPatientManageRouteService.addPatientQuestionResult(dto); + } + + } diff --git a/postdischarge-manage/src/main/java/com/xinelu/manage/dto/manualfollowup/ManualFollowUpDTO.java b/postdischarge-manage/src/main/java/com/xinelu/manage/dto/manualfollowup/ManualFollowUpDTO.java index 6c2d9407..9b53cdf7 100644 --- a/postdischarge-manage/src/main/java/com/xinelu/manage/dto/manualfollowup/ManualFollowUpDTO.java +++ b/postdischarge-manage/src/main/java/com/xinelu/manage/dto/manualfollowup/ManualFollowUpDTO.java @@ -45,8 +45,8 @@ public class ManualFollowUpDTO { @ApiModelProperty(value = "所属病区id") private Long wardId; - @ApiModelProperty(value = "就诊方式,门诊:OUTPATIENT_SERVICE,住院:BE_IN_HOSPITAL") - private String visitMethod; + @ApiModelProperty(value = "患者类型,在院患者:IN_HOSPITAL_PATIENT,门诊患者:OUTPATIENT,出院患者:DISCHARGED_PATIENT") + private String patientType; @ApiModelProperty(value = "就诊流水号") private String visitSerialNumber; diff --git a/postdischarge-manage/src/main/java/com/xinelu/manage/dto/patientquestionsubjectresult/PatientQuestionSubjectResultDTO.java b/postdischarge-manage/src/main/java/com/xinelu/manage/dto/patientquestionsubjectresult/PatientQuestionSubjectResultDTO.java new file mode 100644 index 00000000..a972ccad --- /dev/null +++ b/postdischarge-manage/src/main/java/com/xinelu/manage/dto/patientquestionsubjectresult/PatientQuestionSubjectResultDTO.java @@ -0,0 +1,22 @@ +package com.xinelu.manage.dto.patientquestionsubjectresult; + +import com.xinelu.manage.domain.patientquestionoptionresult.PatientQuestionOptionResult; +import com.xinelu.manage.domain.patientquestionsubjectresult.PatientQuestionSubjectResult; +import lombok.Data; + +import java.util.List; + +/** + * 患者问卷题目提交结果信息DTO + * + * @author : youxilong + * @date : 2024/4/7 13:54 + */ +@Data +public class PatientQuestionSubjectResultDTO extends PatientQuestionSubjectResult { + + /** + * 患者问卷题目选项提交结果信息 + */ + private List optionResultList; +} diff --git a/postdischarge-manage/src/main/java/com/xinelu/manage/dto/patientquestionsubmitresult/PatientQuestionSubmitResultDTO.java b/postdischarge-manage/src/main/java/com/xinelu/manage/dto/patientquestionsubmitresult/PatientQuestionSubmitResultDTO.java new file mode 100644 index 00000000..abafddd4 --- /dev/null +++ b/postdischarge-manage/src/main/java/com/xinelu/manage/dto/patientquestionsubmitresult/PatientQuestionSubmitResultDTO.java @@ -0,0 +1,27 @@ +package com.xinelu.manage.dto.patientquestionsubmitresult; + +import com.xinelu.manage.domain.patientquestionsubmitresult.PatientQuestionSubmitResult; +import com.xinelu.manage.dto.patientquestionsubjectresult.PatientQuestionSubjectResultDTO; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.util.List; + +/** + * 患者问卷提交结果信息表DTO + * + * @author : youxilong + * @date : 2024/4/7 13:48 + */ +@Data +public class PatientQuestionSubmitResultDTO extends PatientQuestionSubmitResult { + + @ApiModelProperty(value = "任务类型,电话外呼:PHONE_OUTBOUND,问卷量表:QUESTIONNAIRE_SCALE,人工随访:ARTIFICIAL_FOLLOW_UP") + private String taskType; + + /** + * 患者问卷题目提交结果信息 + */ + private List subjectResultDTOList; +} diff --git a/postdischarge-manage/src/main/java/com/xinelu/manage/mapper/patientquestionsubmitresult/PatientQuestionSubmitResultMapper.java b/postdischarge-manage/src/main/java/com/xinelu/manage/mapper/patientquestionsubmitresult/PatientQuestionSubmitResultMapper.java index 35b296f4..14632f3f 100644 --- a/postdischarge-manage/src/main/java/com/xinelu/manage/mapper/patientquestionsubmitresult/PatientQuestionSubmitResultMapper.java +++ b/postdischarge-manage/src/main/java/com/xinelu/manage/mapper/patientquestionsubmitresult/PatientQuestionSubmitResultMapper.java @@ -1,7 +1,7 @@ package com.xinelu.manage.mapper.patientquestionsubmitresult; import com.xinelu.manage.domain.patientquestionsubmitresult.PatientQuestionSubmitResult; -import com.xinelu.manage.vo.patientquestionsubmitresult.PatientQuestionSubmitResultDTO; +import com.xinelu.manage.vo.patientquestionsubmitresult.PatientQuestionSubmitResultVO; import java.util.List; @@ -64,7 +64,7 @@ public interface PatientQuestionSubmitResultMapper { * 根据任务执行记录查询患者问卷信息 * * @param taskExecuteRecordId 患者管理任务执行记录表id - * @return PatientQuestionSubmitResultDTO + * @return PatientQuestionSubmitResultVO */ - PatientQuestionSubmitResultDTO selectResultByTaskExecuteRecordId(Long taskExecuteRecordId); + PatientQuestionSubmitResultVO selectResultByTaskExecuteRecordId(Long taskExecuteRecordId); } diff --git a/postdischarge-manage/src/main/java/com/xinelu/manage/mapper/signpatientmanageroute/SignPatientManageRouteMapper.java b/postdischarge-manage/src/main/java/com/xinelu/manage/mapper/signpatientmanageroute/SignPatientManageRouteMapper.java index 08103b83..021e5d88 100644 --- a/postdischarge-manage/src/main/java/com/xinelu/manage/mapper/signpatientmanageroute/SignPatientManageRouteMapper.java +++ b/postdischarge-manage/src/main/java/com/xinelu/manage/mapper/signpatientmanageroute/SignPatientManageRouteMapper.java @@ -2,6 +2,7 @@ package com.xinelu.manage.mapper.signpatientmanageroute; import com.xinelu.manage.domain.signpatientmanageroute.SignPatientManageRoute; import com.xinelu.manage.dto.manualfollowup.ManualFollowUpDTO; +import com.xinelu.manage.vo.manualfollowup.ManualFollowPatientVO; import com.xinelu.manage.vo.manualfollowup.ManualFollowUpVO; import java.util.List; @@ -69,4 +70,10 @@ public interface SignPatientManageRouteMapper { */ List selectManualFollowUpList(ManualFollowUpDTO manualFollowUpDTO); + /** + * 查询人工随访患者基本信息 + * @param id 签约患者管理任务表id + * @return ManualFollowPatientVO 人工随访基本信息VO + */ + ManualFollowPatientVO selectFollowPatientInfo(Long id); } diff --git a/postdischarge-manage/src/main/java/com/xinelu/manage/service/patienttaskexecuterecord/impl/PatientTaskExecuteRecordServiceImpl.java b/postdischarge-manage/src/main/java/com/xinelu/manage/service/patienttaskexecuterecord/impl/PatientTaskExecuteRecordServiceImpl.java index 0235fd8a..f075de7b 100644 --- a/postdischarge-manage/src/main/java/com/xinelu/manage/service/patienttaskexecuterecord/impl/PatientTaskExecuteRecordServiceImpl.java +++ b/postdischarge-manage/src/main/java/com/xinelu/manage/service/patienttaskexecuterecord/impl/PatientTaskExecuteRecordServiceImpl.java @@ -111,7 +111,7 @@ public class PatientTaskExecuteRecordServiceImpl implements IPatientTaskExecuteR * 根据任务执行记录查询患者问卷信息 * * @param taskExecuteRecordId 患者管理任务执行记录表id - * @return PatientQuestionSubmitResultDTO + * @return PatientQuestionSubmitResultVO */ @Override public AjaxResult selectPatientQuestionSubmit(Long taskExecuteRecordId) { diff --git a/postdischarge-manage/src/main/java/com/xinelu/manage/service/signpatientmanageroute/ISignPatientManageRouteService.java b/postdischarge-manage/src/main/java/com/xinelu/manage/service/signpatientmanageroute/ISignPatientManageRouteService.java index 1c631a63..c55aebf3 100644 --- a/postdischarge-manage/src/main/java/com/xinelu/manage/service/signpatientmanageroute/ISignPatientManageRouteService.java +++ b/postdischarge-manage/src/main/java/com/xinelu/manage/service/signpatientmanageroute/ISignPatientManageRouteService.java @@ -3,6 +3,7 @@ package com.xinelu.manage.service.signpatientmanageroute; import com.xinelu.common.core.domain.AjaxResult; import com.xinelu.manage.domain.signpatientmanageroute.SignPatientManageRoute; import com.xinelu.manage.dto.manualfollowup.ManualFollowUpDTO; +import com.xinelu.manage.dto.patientquestionsubmitresult.PatientQuestionSubmitResultDTO; import com.xinelu.manage.vo.manualfollowup.ManualFollowUpVO; import com.xinelu.manage.vo.signpatientmanageroute.SignPatientManageRouteVO; @@ -71,4 +72,17 @@ public interface ISignPatientManageRouteService { */ List selectManualFollowUpList(ManualFollowUpDTO manualFollowUpDTO); + /** + * 查询人工随访患者基本信息 + * @param id 签约患者管理任务表id + * @return 人工随访患者基本信息 + */ + AjaxResult selectFollowPatientInfo(Long id); + + /** + * 人工随访代办处理 + * @param dto 患者问卷提交结果信息表DTO + * @return 结果 + */ + AjaxResult addPatientQuestionResult(PatientQuestionSubmitResultDTO dto); } diff --git a/postdischarge-manage/src/main/java/com/xinelu/manage/service/signpatientmanageroute/impl/SignPatientManageRouteServiceImpl.java b/postdischarge-manage/src/main/java/com/xinelu/manage/service/signpatientmanageroute/impl/SignPatientManageRouteServiceImpl.java index 94e47275..2bfe22b0 100644 --- a/postdischarge-manage/src/main/java/com/xinelu/manage/service/signpatientmanageroute/impl/SignPatientManageRouteServiceImpl.java +++ b/postdischarge-manage/src/main/java/com/xinelu/manage/service/signpatientmanageroute/impl/SignPatientManageRouteServiceImpl.java @@ -1,19 +1,24 @@ package com.xinelu.manage.service.signpatientmanageroute.impl; import com.xinelu.common.core.domain.AjaxResult; +import com.xinelu.common.utils.AgeUtil; import com.xinelu.common.utils.SecurityUtils; import com.xinelu.manage.domain.signpatientmanageroute.SignPatientManageRoute; import com.xinelu.manage.domain.signpatientmanageroutenode.SignPatientManageRouteNode; import com.xinelu.manage.dto.manualfollowup.ManualFollowUpDTO; +import com.xinelu.manage.dto.patientquestionsubmitresult.PatientQuestionSubmitResultDTO; import com.xinelu.manage.mapper.signpatientmanageroute.SignPatientManageRouteMapper; import com.xinelu.manage.mapper.signpatientmanageroutenode.SignPatientManageRouteNodeMapper; import com.xinelu.manage.service.signpatientmanageroute.ISignPatientManageRouteService; +import com.xinelu.manage.vo.manualfollowup.ManualFollowPatientVO; import com.xinelu.manage.vo.manualfollowup.ManualFollowUpVO; import com.xinelu.manage.vo.signpatientmanageroute.SignPatientManageRouteVO; +import org.apache.commons.lang3.ObjectUtils; +import org.springframework.stereotype.Service; + +import javax.annotation.Resource; import java.time.LocalDateTime; import java.util.List; -import javax.annotation.Resource; -import org.springframework.stereotype.Service; /** @@ -141,4 +146,31 @@ public class SignPatientManageRouteServiceImpl implements ISignPatientManageRout public List selectManualFollowUpList(ManualFollowUpDTO manualFollowUpDTO) { return signPatientManageRouteMapper.selectManualFollowUpList(manualFollowUpDTO); } + + /** + * 查询人工随访患者基本信息 + * @param id 签约患者管理任务表id + * @return 人工随访患者基本信息VO + */ + @Override + public AjaxResult selectFollowPatientInfo(Long id) { + ManualFollowPatientVO patientVO = signPatientManageRouteMapper.selectFollowPatientInfo(id); + // 设置年龄 + patientVO.setAge(AgeUtil.getAgeMonth(patientVO.getBirthDate().toString())); + if (ObjectUtils.isEmpty(patientVO)){ + return AjaxResult.error("患者信息不存在!"); + } + return AjaxResult.success(patientVO); + } + + /** + * 人工随访代办处理 + * @param dto 患者问卷提交结果信息表DTO + * @return 结果 + */ + @Override + public AjaxResult addPatientQuestionResult(PatientQuestionSubmitResultDTO dto) { + + return null; + } } diff --git a/postdischarge-manage/src/main/java/com/xinelu/manage/vo/manualfollowup/ManualFollowPatientVO.java b/postdischarge-manage/src/main/java/com/xinelu/manage/vo/manualfollowup/ManualFollowPatientVO.java new file mode 100644 index 00000000..5e65f904 --- /dev/null +++ b/postdischarge-manage/src/main/java/com/xinelu/manage/vo/manualfollowup/ManualFollowPatientVO.java @@ -0,0 +1,61 @@ +package com.xinelu.manage.vo.manualfollowup; + +import com.fasterxml.jackson.annotation.JsonFormat; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.time.LocalDate; + +/** + * 人工随访患者基本信息VO + * @author : youxilong + * @date : 2024/4/7 8:52 + */ +@Data +public class ManualFollowPatientVO { + + /** + * 居民信息表id + */ + private Long id; + + /** + * 患者信息表id + */ + private Long patientId; + + @ApiModelProperty(value = "姓名") + private String patientName; + + @ApiModelProperty(value = "性别") + private String sex; + + @ApiModelProperty(value = "患者年龄") + private Long age; + + @ApiModelProperty(value = "身份证号") + private String cardNo; + + @ApiModelProperty(value = "患者电话") + private String patientPhone; + + @ApiModelProperty(value = "出生日期,格式:yyyy-MM-dd") + @JsonFormat(pattern = "yyyy-MM-dd") + private LocalDate birthDate; + + @ApiModelProperty(value = "家属电话") + private String familyMemberPhone; + + @ApiModelProperty(value = "住址") + private String address; + + @ApiModelProperty(value = "患者个人头像图片路径") + private String avatarPictureUrl; + + @ApiModelProperty(value = "所属服务包表id") + private String servicePackageId; + + @ApiModelProperty(value = "服务包名称") + private String packageName; + +} diff --git a/postdischarge-manage/src/main/java/com/xinelu/manage/vo/manualfollowup/ManualFollowUpVO.java b/postdischarge-manage/src/main/java/com/xinelu/manage/vo/manualfollowup/ManualFollowUpVO.java index 72251e82..060c41cf 100644 --- a/postdischarge-manage/src/main/java/com/xinelu/manage/vo/manualfollowup/ManualFollowUpVO.java +++ b/postdischarge-manage/src/main/java/com/xinelu/manage/vo/manualfollowup/ManualFollowUpVO.java @@ -1,7 +1,6 @@ package com.xinelu.manage.vo.manualfollowup; import com.fasterxml.jackson.annotation.JsonFormat; -import com.xinelu.common.annotation.Excel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @@ -16,6 +15,22 @@ import java.time.LocalDateTime; @Data public class ManualFollowUpVO { + /** + * 签约患者管理任务id + */ + private Long manageRouteId; + + @ApiModelProperty(value = "路径名称(任务名称)") + private String manageRouteName; + + /** + * 签约患者管理任务节点id + */ + private Long manageRouteNodeId; + + @ApiModelProperty(value = "管理路径节点名称,出院后:AFTER_DISCHARGE,入院后:AFTER_ADMISSION,就诊后:AFTER_CONSULTATION,就诊/出院后:AFTER_VISIT_DISCHARGE,术前:PREOPERATIVE,术后:POSTOPERATIVE") + private String routeNodeName; + @ApiModelProperty(value = "患者姓名") private String patientName; @@ -67,8 +82,8 @@ public class ManualFollowUpVO { @ApiModelProperty(value = "主治医生姓名") private String attendingPhysicianName; - @ApiModelProperty(value = "就诊方式,门诊:OUTPATIENT_SERVICE,住院:BE_IN_HOSPITAL") - private String visitMethod; + @ApiModelProperty(value = "患者类型,在院患者:IN_HOSPITAL_PATIENT,门诊患者:OUTPATIENT,出院患者:DISCHARGED_PATIENT") + private String patientType; @ApiModelProperty(value = "入院时间") @JsonFormat(pattern = "yyyy-MM-dd") diff --git a/postdischarge-manage/src/main/java/com/xinelu/manage/vo/patientquestionsubjectresult/PatientQuestionSubjectResultDTO.java b/postdischarge-manage/src/main/java/com/xinelu/manage/vo/patientquestionsubjectresult/PatientQuestionSubjectResultVO.java similarity index 89% rename from postdischarge-manage/src/main/java/com/xinelu/manage/vo/patientquestionsubjectresult/PatientQuestionSubjectResultDTO.java rename to postdischarge-manage/src/main/java/com/xinelu/manage/vo/patientquestionsubjectresult/PatientQuestionSubjectResultVO.java index d703a015..8d21c9fa 100644 --- a/postdischarge-manage/src/main/java/com/xinelu/manage/vo/patientquestionsubjectresult/PatientQuestionSubjectResultDTO.java +++ b/postdischarge-manage/src/main/java/com/xinelu/manage/vo/patientquestionsubjectresult/PatientQuestionSubjectResultVO.java @@ -15,7 +15,7 @@ import java.util.List; */ @EqualsAndHashCode(callSuper = true) @Data -public class PatientQuestionSubjectResultDTO extends PatientQuestionSubjectResult { +public class PatientQuestionSubjectResultVO extends PatientQuestionSubjectResult { /* * 患者问卷题目提交结果信息对象id diff --git a/postdischarge-manage/src/main/java/com/xinelu/manage/vo/patientquestionsubmitresult/PatientQuestionSubmitResultDTO.java b/postdischarge-manage/src/main/java/com/xinelu/manage/vo/patientquestionsubmitresult/PatientQuestionSubmitResultVO.java similarity index 82% rename from postdischarge-manage/src/main/java/com/xinelu/manage/vo/patientquestionsubmitresult/PatientQuestionSubmitResultDTO.java rename to postdischarge-manage/src/main/java/com/xinelu/manage/vo/patientquestionsubmitresult/PatientQuestionSubmitResultVO.java index 921e4826..0eebbf31 100644 --- a/postdischarge-manage/src/main/java/com/xinelu/manage/vo/patientquestionsubmitresult/PatientQuestionSubmitResultDTO.java +++ b/postdischarge-manage/src/main/java/com/xinelu/manage/vo/patientquestionsubmitresult/PatientQuestionSubmitResultVO.java @@ -1,7 +1,7 @@ package com.xinelu.manage.vo.patientquestionsubmitresult; -import com.xinelu.manage.vo.patientquestionsubjectresult.PatientQuestionSubjectResultDTO; +import com.xinelu.manage.vo.patientquestionsubjectresult.PatientQuestionSubjectResultVO; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @@ -14,7 +14,7 @@ import java.util.List; * @date 2024-03-28 */ @Data -public class PatientQuestionSubmitResultDTO { +public class PatientQuestionSubmitResultVO { private Long submitResulId; /** @@ -29,5 +29,5 @@ public class PatientQuestionSubmitResultDTO { @ApiModelProperty(value = "问卷说明") private String questionnaireDescription; - List subjectResultList; + List subjectResultList; } diff --git a/postdischarge-manage/src/main/resources/mapper/manage/patientquestionsubmitresult/PatientQuestionSubmitResultMapper.xml b/postdischarge-manage/src/main/resources/mapper/manage/patientquestionsubmitresult/PatientQuestionSubmitResultMapper.xml index e35f3962..a5628a87 100644 --- a/postdischarge-manage/src/main/resources/mapper/manage/patientquestionsubmitresult/PatientQuestionSubmitResultMapper.xml +++ b/postdischarge-manage/src/main/resources/mapper/manage/patientquestionsubmitresult/PatientQuestionSubmitResultMapper.xml @@ -32,7 +32,7 @@ - @@ -40,7 +40,7 @@ - @@ -373,7 +373,7 @@ + + insert into sign_patient_manage_route