From d48a5c3348964b1771bd735f794ae2e2aef43094 Mon Sep 17 00:00:00 2001
From: gognqingkai <1825346742@qq.com>
Date: Thu, 18 Apr 2024 11:10:15 +0800
Subject: [PATCH 1/9] =?UTF-8?q?=E5=8D=95=E4=B8=AAinfo=E8=B5=84=E8=AE=AF?=
=?UTF-8?q?=E8=8E=B7=E5=8F=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../controller/info/MobileInfoController.java | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/postdischarge-mobile/src/main/java/com/xinelu/mobile/controller/info/MobileInfoController.java b/postdischarge-mobile/src/main/java/com/xinelu/mobile/controller/info/MobileInfoController.java
index c0b309a8..cf070649 100644
--- a/postdischarge-mobile/src/main/java/com/xinelu/mobile/controller/info/MobileInfoController.java
+++ b/postdischarge-mobile/src/main/java/com/xinelu/mobile/controller/info/MobileInfoController.java
@@ -1,19 +1,16 @@
package com.xinelu.mobile.controller.info;
import com.xinelu.common.core.controller.BaseController;
+import com.xinelu.common.core.domain.AjaxResult;
import com.xinelu.common.core.page.TableDataInfo;
import com.xinelu.manage.domain.info.Info;
import com.xinelu.manage.service.info.IInfoService;
import lombok.extern.slf4j.Slf4j;
-import org.springframework.security.access.prepost.PreAuthorize;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
+import org.springframework.web.bind.annotation.*;
+
import javax.annotation.Resource;
import java.util.List;
-import static com.xinelu.common.utils.PageUtils.startPage;
-
/**
* 微信端获取资讯信息
* 资讯信息Controller
@@ -36,4 +33,9 @@ public class MobileInfoController extends BaseController {
return getDataTable(list);
}
+ @GetMapping("/getInfoById")
+ public AjaxResult getInfoById(Long id) {
+ return AjaxResult.success(infoService.selectInfoById(id));
+ }
+
}
From 1a41b740974be1a6e1ef08120a2ed17f39eb6b70 Mon Sep 17 00:00:00 2001
From: gognqingkai <1825346742@qq.com>
Date: Thu, 18 Apr 2024 14:52:39 +0800
Subject: [PATCH 2/9] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=B5=84=E8=AE=AF?=
=?UTF-8?q?=E6=9F=A5=E8=AF=A2=E6=A8=A1=E7=B3=8A=E6=90=9C=E7=B4=A2=EF=BC=8C?=
=?UTF-8?q?=E5=AD=97=E6=AE=B5=E4=BF=A1=E6=81=AF=E7=AE=A1=E7=90=86=E6=8E=92?=
=?UTF-8?q?=E5=BA=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../mapper/manage/info/InfoMapper.xml | 4 +-
.../infocategory/InfoCategoryMapper.xml | 154 +++++++++---------
.../LabelFieldContentMapper.xml | 26 +--
.../labelfieldinfo/LabelFieldInfoMapper.xml | 2 +-
4 files changed, 97 insertions(+), 89 deletions(-)
diff --git a/postdischarge-manage/src/main/resources/mapper/manage/info/InfoMapper.xml b/postdischarge-manage/src/main/resources/mapper/manage/info/InfoMapper.xml
index 02a0a808..b6d414ca 100644
--- a/postdischarge-manage/src/main/resources/mapper/manage/info/InfoMapper.xml
+++ b/postdischarge-manage/src/main/resources/mapper/manage/info/InfoMapper.xml
@@ -50,10 +50,10 @@
and info_category_name = #{infoCategoryName}
- and info_title = #{infoTitle}
+ and info_title like concat('%', #{infoTitle}, '%')
- and info_code = #{infoCode}
+ and info_code like concat('%', #{infoCode}, '%')
and info_content = #{infoContent}
diff --git a/postdischarge-manage/src/main/resources/mapper/manage/infocategory/InfoCategoryMapper.xml b/postdischarge-manage/src/main/resources/mapper/manage/infocategory/InfoCategoryMapper.xml
index 47380baf..3b43533c 100644
--- a/postdischarge-manage/src/main/resources/mapper/manage/infocategory/InfoCategoryMapper.xml
+++ b/postdischarge-manage/src/main/resources/mapper/manage/infocategory/InfoCategoryMapper.xml
@@ -5,114 +5,123 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
- select id, info_category_code, info_category_name, info_category_type, info_category_sort, info_category_creator, info_category_create_time from info_category
+ select id,
+ info_category_code,
+ info_category_name,
+ info_category_type,
+ info_category_sort,
+ info_category_creator,
+ info_category_create_time
+ from info_category
-
-
insert into info_category(
info_category_code,
diff --git a/postdischarge-manage/src/main/resources/mapper/manage/labelfieldcontent/LabelFieldContentMapper.xml b/postdischarge-manage/src/main/resources/mapper/manage/labelfieldcontent/LabelFieldContentMapper.xml
index d70a18b7..3409eadb 100644
--- a/postdischarge-manage/src/main/resources/mapper/manage/labelfieldcontent/LabelFieldContentMapper.xml
+++ b/postdischarge-manage/src/main/resources/mapper/manage/labelfieldcontent/LabelFieldContentMapper.xml
@@ -77,7 +77,7 @@
#{fieldMark}
- order by create_time DESC
+ order by content_sort, create_time DESC
field_id =
- #{fieldId},
+ #{fieldId},
field_name =
- #{fieldName},
+ #{fieldName},
content_name =
- #{contentName},
+ #{contentName},
content_code =
- #{contentCode},
+ #{contentCode},
result_preview =
- #{resultPreview},
+ #{resultPreview},
content_sort =
- #{contentSort},
+ #{contentSort},
content_remark =
- #{contentRemark},
+ #{contentRemark},
field_mark =
- #{fieldMark},
+ #{fieldMark},
create_by =
- #{createBy},
+ #{createBy},
create_time =
- #{createTime},
+ #{createTime},
update_by =
- #{updateBy},
+ #{updateBy},
update_time =
- #{updateTime},
+ #{updateTime},
where id = #{id}
diff --git a/postdischarge-manage/src/main/resources/mapper/manage/labelfieldinfo/LabelFieldInfoMapper.xml b/postdischarge-manage/src/main/resources/mapper/manage/labelfieldinfo/LabelFieldInfoMapper.xml
index 1320455a..9a32f21c 100644
--- a/postdischarge-manage/src/main/resources/mapper/manage/labelfieldinfo/LabelFieldInfoMapper.xml
+++ b/postdischarge-manage/src/main/resources/mapper/manage/labelfieldinfo/LabelFieldInfoMapper.xml
@@ -57,7 +57,7 @@
#{fieldRemark}
- order by create_time DESC
+ order by field_sort, create_time DESC
From f7697d4d2cc461f6242623c27714dedfb9745a0e Mon Sep 17 00:00:00 2001
From: zhangheng <3226558941@qq.com>
Date: Fri, 19 Apr 2024 11:01:33 +0800
Subject: [PATCH 3/9] =?UTF-8?q?=E4=B8=93=E7=97=85=E8=B7=AF=E5=BE=84?=
=?UTF-8?q?=E9=9A=8F=E8=AE=BF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../manage/specialdiseaseroute/SpecialDiseaseRouteMapper.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/postdischarge-manage/src/main/resources/mapper/manage/specialdiseaseroute/SpecialDiseaseRouteMapper.xml b/postdischarge-manage/src/main/resources/mapper/manage/specialdiseaseroute/SpecialDiseaseRouteMapper.xml
index 41de00d0..18678f76 100644
--- a/postdischarge-manage/src/main/resources/mapper/manage/specialdiseaseroute/SpecialDiseaseRouteMapper.xml
+++ b/postdischarge-manage/src/main/resources/mapper/manage/specialdiseaseroute/SpecialDiseaseRouteMapper.xml
@@ -199,6 +199,7 @@
and sdrp.service_package_id = #{servicePackageId}
+ GROUP BY sdr.id order by create_time DESC,route_sort ASC
Date: Fri, 19 Apr 2024 11:25:58 +0800
Subject: [PATCH 4/9] =?UTF-8?q?=E4=B8=93=E7=97=85=E8=B7=AF=E5=BE=84?=
=?UTF-8?q?=E9=9A=8F=E8=AE=BF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../impl/SpecialDiseaseNodeServiceImpl.java | 22 ++++++++++++++-----
1 file changed, 16 insertions(+), 6 deletions(-)
diff --git a/postdischarge-manage/src/main/java/com/xinelu/manage/service/specialdiseasenode/impl/SpecialDiseaseNodeServiceImpl.java b/postdischarge-manage/src/main/java/com/xinelu/manage/service/specialdiseasenode/impl/SpecialDiseaseNodeServiceImpl.java
index 8abc07c2..2297c3ce 100644
--- a/postdischarge-manage/src/main/java/com/xinelu/manage/service/specialdiseasenode/impl/SpecialDiseaseNodeServiceImpl.java
+++ b/postdischarge-manage/src/main/java/com/xinelu/manage/service/specialdiseasenode/impl/SpecialDiseaseNodeServiceImpl.java
@@ -12,11 +12,14 @@ import com.xinelu.manage.service.specialdiseasenode.ISpecialDiseaseNodeService;
import com.xinelu.manage.vo.specialdiseasenode.SpecialDiseaseNodeVO;
import com.xinelu.manage.vo.specialdiseaseroute.SpecialDiseaseRouteVO;
import lombok.extern.slf4j.Slf4j;
+import org.apache.commons.collections4.CollectionUtils;
+import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import javax.annotation.Resource;
import java.time.LocalDateTime;
+import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
@@ -110,13 +113,20 @@ public class SpecialDiseaseNodeServiceImpl implements ISpecialDiseaseNodeService
log.info("删除管理节点信息失败");
throw new ServiceException("修改专病路径管理节点信息失败");
}
- for (SpecialDiseaseNodeVO diseaseNode : specialDiseaseNode.getSpecialDiseaseNodeList()) {
- diseaseNode.setRouteId(specialDiseaseRoute.getId());
- diseaseNode.setRouteName(specialDiseaseNode.getRouteName());
- diseaseNode.setUpdateTime(LocalDateTime.now());
- diseaseNode.setUpdateBy(SecurityUtils.getUsername());
+ if (CollectionUtils.isEmpty(specialDiseaseNode.getSpecialDiseaseNodeList())) {
+ return AjaxResult.success();
}
- int insertNodeCount = specialDiseaseNodeMapper.insertSpecialDiseaseNodeList(specialDiseaseNode.getSpecialDiseaseNodeList());
+ ArrayList specialDiseaseNodeVOS = new ArrayList<>();
+ for (SpecialDiseaseNodeVO diseaseNode : specialDiseaseNode.getSpecialDiseaseNodeList()) {
+ if (StringUtils.isNotBlank(diseaseNode.getRouteNodeName()) && Objects.nonNull(diseaseNode.getRouteNodeDay()) && StringUtils.isNotBlank(diseaseNode.getTaskType()) && StringUtils.isNotBlank(diseaseNode.getTaskSubdivision()) && StringUtils.isNotBlank(diseaseNode.getTaskStatus())) {
+ diseaseNode.setRouteId(specialDiseaseRoute.getId());
+ diseaseNode.setRouteName(specialDiseaseNode.getRouteName());
+ diseaseNode.setUpdateTime(LocalDateTime.now());
+ diseaseNode.setUpdateBy(SecurityUtils.getUsername());
+ specialDiseaseNodeVOS.add(diseaseNode);
+ }
+ }
+ int insertNodeCount = specialDiseaseNodeMapper.insertSpecialDiseaseNodeList(specialDiseaseNodeVOS);
if (insertNodeCount < 0) {
log.info("新增管理节点信息失败");
throw new ServiceException("修改专病路径管理节点信息失败");
From d6ea866154b2e02ffbe4f9d5803791698d6c09b2 Mon Sep 17 00:00:00 2001
From: haown <454902499@qq.com>
Date: Fri, 19 Apr 2024 15:05:24 +0800
Subject: [PATCH 5/9] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=AD=BE=E7=BA=A6?=
=?UTF-8?q?=E4=BF=9D=E5=AD=98=E3=80=82?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../mapper/manage/signpatientrecord/SignPatientRecordMapper.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/postdischarge-manage/src/main/resources/mapper/manage/signpatientrecord/SignPatientRecordMapper.xml b/postdischarge-manage/src/main/resources/mapper/manage/signpatientrecord/SignPatientRecordMapper.xml
index 8410a7fe..c62061c8 100644
--- a/postdischarge-manage/src/main/resources/mapper/manage/signpatientrecord/SignPatientRecordMapper.xml
+++ b/postdischarge-manage/src/main/resources/mapper/manage/signpatientrecord/SignPatientRecordMapper.xml
@@ -86,7 +86,7 @@
,#{patientPhone,jdbcType=VARCHAR},#{cardNo,jdbcType=VARCHAR},#{sex,jdbcType=VARCHAR},#{birthDate,jdbcType=DATE},#{signTime,jdbcType=TIMESTAMP}
,#{hospitalAgencyId,jdbcType=BIGINT},#{hospitalAgencyName,jdbcType=VARCHAR},#{campusAgencyId,jdbcType=BIGINT}
,#{campusAgencyName,jdbcType=VARCHAR},#{departmentId,jdbcType=BIGINT},#{departmentName,jdbcType=VARCHAR}
- ,#{wardId,jdbcType=BIGINT},#{wardName,jdbcType=VARCHAR},#{visitSerialNumber,jdbcType=VARCHAR}
+ ,#{wardId,jdbcType=BIGINT},#{wardName,jdbcType=VARCHAR},#{patientVisitRecordId,jdbcType=BIGINT},#{visitSerialNumber,jdbcType=VARCHAR}
,#{visitMethod,jdbcType=VARCHAR},#{inHospitalNumber,jdbcType=VARCHAR},#{signDiagnosis,jdbcType=VARCHAR},#{reviewDiagnosis,jdbcType=VARCHAR}
,#{serviceStatus,jdbcType=VARCHAR},#{signStatus,jdbcType=VARCHAR},#{intentionalSource,jdbcType=VARCHAR}
,#{intentionalTime,jdbcType=TIMESTAMP},#{billingDoctorId,jdbcType=BIGINT},#{billingDoctorName,jdbcType=VARCHAR}
From 04f54846f6bbbec236bc3e41e6c26861d65ff702 Mon Sep 17 00:00:00 2001
From: zhangheng <3226558941@qq.com>
Date: Fri, 19 Apr 2024 15:23:36 +0800
Subject: [PATCH 6/9] =?UTF-8?q?=E7=94=A8=E6=88=B7=E7=AE=A1=E7=90=86?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../com/xinelu/web/controller/system/SysUserController.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/postdischarge-admin/src/main/java/com/xinelu/web/controller/system/SysUserController.java b/postdischarge-admin/src/main/java/com/xinelu/web/controller/system/SysUserController.java
index c8f4bf78..deaa69e2 100644
--- a/postdischarge-admin/src/main/java/com/xinelu/web/controller/system/SysUserController.java
+++ b/postdischarge-admin/src/main/java/com/xinelu/web/controller/system/SysUserController.java
@@ -141,7 +141,7 @@ public class SysUserController extends BaseController {
*/
@PreAuthorize("@ss.hasPermi('system:user:edit')")
@Log(title = "用户管理", businessType = BusinessType.UPDATE)
- @PutMapping
+ @PutMapping("/edit")
public AjaxResult edit(@Validated @RequestBody SysUser user) {
userService.checkUserAllowed(user);
userService.checkUserDataScope(user.getUserId());
From 7f839b4126b9e2b0429eca8c84eb42357e37d015 Mon Sep 17 00:00:00 2001
From: zhangheng <3226558941@qq.com>
Date: Fri, 19 Apr 2024 17:17:55 +0800
Subject: [PATCH 7/9] =?UTF-8?q?=E5=AF=BC=E5=85=A5=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../resources/template/科室信息导入表.xlsx | Bin 11120 -> 11021 bytes
.../com/xinelu/common/constant/Constants.java | 15 ++++++++++-----
.../manage/domain/department/Department.java | 2 --
.../agency/impl/AgencyServiceImpl.java | 5 +++++
.../impl/DepartmentServiceImpl.java | 5 +++++
.../impl/InfoCategoryServiceImpl.java | 2 +-
6 files changed, 21 insertions(+), 8 deletions(-)
diff --git a/postdischarge-admin/src/main/resources/template/科室信息导入表.xlsx b/postdischarge-admin/src/main/resources/template/科室信息导入表.xlsx
index 96e2fb969277ac16f72d63cc76923b3254d3bc20..5a0c7c8f607808f6cb53b2cc86b07e5dd6c2ba12 100644
GIT binary patch
delta 5301
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
delta 5452
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
Date: Mon, 22 Apr 2024 09:23:37 +0800
Subject: [PATCH 8/9] =?UTF-8?q?=E5=AF=BC=E5=85=A5=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../dto/department/ImportDepartmentDTO.java | 131 ++++++++++++++++++
1 file changed, 131 insertions(+)
create mode 100644 postdischarge-manage/src/main/java/com/xinelu/manage/dto/department/ImportDepartmentDTO.java
diff --git a/postdischarge-manage/src/main/java/com/xinelu/manage/dto/department/ImportDepartmentDTO.java b/postdischarge-manage/src/main/java/com/xinelu/manage/dto/department/ImportDepartmentDTO.java
new file mode 100644
index 00000000..b3945091
--- /dev/null
+++ b/postdischarge-manage/src/main/java/com/xinelu/manage/dto/department/ImportDepartmentDTO.java
@@ -0,0 +1,131 @@
+package com.xinelu.manage.dto.department;
+
+import com.xinelu.common.annotation.Excel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+@Data
+public class ImportDepartmentDTO {
+
+ private static final long serialVersionUID = 1L;
+
+ /**
+ * 上级科室id
+ */
+ @ApiModelProperty(value = "上级科室编号")
+ @Excel(name = "上级科室编号")
+ private String parentDepartmentCode;
+
+ /**
+ * 所属机构id
+ */
+ @ApiModelProperty(value = "所属机构编码")
+ @Excel(name = "所属机构编码")
+ private String agencyCode;
+
+ /**
+ * 所属机构名称
+ */
+ @ApiModelProperty(value = "所属机构名称")
+ @Excel(name = "所属机构名称")
+ private String agencyName;
+
+ /**
+ * 科室名称
+ */
+ @ApiModelProperty(value = "科室名称")
+ @Excel(name = "科室名称")
+ private String departmentName;
+
+ /**
+ * 科室类型
+ */
+ @ApiModelProperty(value = "科室类型")
+ @Excel(name = "科室类型")
+ private String departmentType;
+
+ /**
+ * 科室简称
+ */
+ @ApiModelProperty(value = "科室简称")
+ @Excel(name = "科室简称")
+ private String departmentAbbreviation;
+
+ /**
+ * 科室负责人id
+ */
+ @ApiModelProperty(value = "科室负责人id")
+ @Excel(name = "科室负责人编号")
+ private String departmentPersonId;
+
+ /**
+ * 科室负责人姓名
+ */
+ @ApiModelProperty(value = "科室负责人姓名")
+ @Excel(name = "科室负责人姓名")
+ private String departmentPersonName;
+
+ /**
+ * 节点类型,科室:DEPARTMENT,病区:WARD,
+ */
+ @ApiModelProperty(value = "节点类型,科室:DEPARTMENT,病区:WARD")
+ @Excel(name = "节点类型,科室:DEPARTMENT,病区:WARD")
+ private String nodeType;
+
+ /**
+ * 提供服务类别,门诊:OUTPATIENT_SERVICE,急诊:EMERGENCY_TREATMENT,住院:BE_HOSPITALIZED,病区:WARD,医技:MEDICAL_TECHNOLOGY,
+ * 药剂:DRUG,财务:FINANCE,行政:ADMINISTRATION,药房:PHARMACY,药库:DRUG_STORAGE,公卫:PUBLIC_HEALTH
+ */
+ @ApiModelProperty(value = "提供服务类别,门诊:OUTPATIENT_SERVICE,急诊:EMERGENCY_TREATMENT,住院:BE_HOSPITALIZED,病区:WARD,医技:MEDICAL_TECHNOLOGY,药剂:DRUG,财务:FINANCE,行政:ADMINISTRATION,药房:PHARMACY,药库:DRUG_STORAGE,公卫:PUBLIC_HEALTH")
+ @Excel(name = "提供服务类别,门诊:OUTPATIENT_SERVICE,急诊:EMERGENCY_TREATMENT,住院:BE_HOSPITALIZED,病区:WARD,医技:MEDICAL_TECHNOLOGY, 药剂:DRUG,财务:FINANCE,行政:ADMINISTRATION,药房:PHARMACY,药库:DRUG_STORAGE,公卫:PUBLIC_HEALTH")
+ private String provideServiceCategory;
+
+ /**
+ * 细分类别id
+ */
+ @ApiModelProperty(value = "细分类别id")
+ @Excel(name = "细分类别编号")
+ private String subdivisionCategoryCode;
+
+ /**
+ * 细分类别名称
+ */
+ @ApiModelProperty(value = "细分类别名称")
+ @Excel(name = "细分类别名称")
+ private String subdivisionCategoryName;
+
+ /**
+ * 标准科室对照id
+ */
+ @ApiModelProperty(value = "标准科室对照id")
+ @Excel(name = "标准科室对照编号")
+ private String normDepartmentCompareCode;
+
+ /**
+ * 标准科室对照名称
+ */
+ @ApiModelProperty(value = "标准科室对照名称")
+ @Excel(name = "标准科室对照名称")
+ private String normDepartmentCompareName;
+
+ /**
+ * 编制床位数
+ */
+ @ApiModelProperty(value = "编制床位数")
+ @Excel(name = "编制床位数")
+ private Integer prepareBedsCount;
+
+ /**
+ * 科室电话
+ */
+ @ApiModelProperty(value = "科室电话")
+ @Excel(name = "科室电话")
+ private String departmentPhone;
+
+ /**
+ * 科室邮箱
+ */
+ @ApiModelProperty(value = "科室邮箱")
+ @Excel(name = "科室邮箱")
+ private String departmentMail;
+}
From 8738919289c7525369ca97bcde8c3f76bba41c47 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=BA=AA=E5=AF=92?= <2533659732@qq.com>
Date: Mon, 22 Apr 2024 13:18:10 +0800
Subject: [PATCH 9/9] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E6=A0=BC=E5=BC=8F?=
=?UTF-8?q?=E5=8C=96=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../appletpersoncenter/AppletPersonCenterController.java | 9 +++------
.../appletpersoncenter/AppletPersonCenterMapper.java | 9 +++++----
.../appletpersoncenter/AppletPersonCenterService.java | 6 +++---
.../Impl/AppletPersonCenterServiceImpl.java | 7 +++----
.../appletpersoncenter/AppletPersonCenterMapper.xml | 4 ++--
5 files changed, 16 insertions(+), 19 deletions(-)
diff --git a/postdischarge-mobile/src/main/java/com/xinelu/mobile/controller/appletpersoncenter/AppletPersonCenterController.java b/postdischarge-mobile/src/main/java/com/xinelu/mobile/controller/appletpersoncenter/AppletPersonCenterController.java
index c00f62c5..2ea19c97 100644
--- a/postdischarge-mobile/src/main/java/com/xinelu/mobile/controller/appletpersoncenter/AppletPersonCenterController.java
+++ b/postdischarge-mobile/src/main/java/com/xinelu/mobile/controller/appletpersoncenter/AppletPersonCenterController.java
@@ -3,7 +3,6 @@ package com.xinelu.mobile.controller.appletpersoncenter;
import com.xinelu.common.core.controller.BaseController;
import com.xinelu.common.core.domain.AjaxResult;
import com.xinelu.common.core.page.TableDataInfo;
-import com.xinelu.manage.service.patientinfo.IPatientInfoService;
import com.xinelu.mobile.dto.appletpersoncenter.HealthRecordDTO;
import com.xinelu.mobile.service.appletpersoncenter.AppletPersonCenterService;
import org.apache.commons.lang3.StringUtils;
@@ -27,8 +26,6 @@ public class AppletPersonCenterController extends BaseController {
@Resource
private AppletPersonCenterService appletPersonCenterService;
- @Resource
- private IPatientInfoService patientInfoService;
/**
* 院后微信小程序一键登录接口
@@ -62,8 +59,8 @@ public class AppletPersonCenterController extends BaseController {
/**
* 根据居民表id查询患者健康档案信息
*
- * @param residentId
- * @return
+ * @param residentId 居民患者id
+ * @return 分页列表数据
*/
@GetMapping("/getHealthRecordListByResidentId")
public TableDataInfo getHealthRecordListById(Long residentId) {
@@ -75,7 +72,7 @@ public class AppletPersonCenterController extends BaseController {
/**
* 根据id获取患者患者健康档案信息
*
- * @param id
+ * @param id 居民患者id
* @return PatientInfo
*/
@GetMapping("/getHealthRecordInfoById")
diff --git a/postdischarge-mobile/src/main/java/com/xinelu/mobile/mapper/appletpersoncenter/AppletPersonCenterMapper.java b/postdischarge-mobile/src/main/java/com/xinelu/mobile/mapper/appletpersoncenter/AppletPersonCenterMapper.java
index eaf5a5aa..67f49fd9 100644
--- a/postdischarge-mobile/src/main/java/com/xinelu/mobile/mapper/appletpersoncenter/AppletPersonCenterMapper.java
+++ b/postdischarge-mobile/src/main/java/com/xinelu/mobile/mapper/appletpersoncenter/AppletPersonCenterMapper.java
@@ -16,14 +16,15 @@ public interface AppletPersonCenterMapper {
/**
* 根据居民表id查询患者健康档案信息
*
- * @param residentID
- * @return
+ * @param residentId 居民患者id
+ * @return 列表信息
*/
- List getHealthRecordListByResidentID(Long residentID);
+ List getHealthRecordListByResidentId(Long residentId);
/**
* 根绝id获取患者蒋康档案详细信息
- * @param id
+ *
+ * @param id 居民患者id
* @return 健康档案详细信息
*/
diff --git a/postdischarge-mobile/src/main/java/com/xinelu/mobile/service/appletpersoncenter/AppletPersonCenterService.java b/postdischarge-mobile/src/main/java/com/xinelu/mobile/service/appletpersoncenter/AppletPersonCenterService.java
index 774675d0..d66bdd47 100644
--- a/postdischarge-mobile/src/main/java/com/xinelu/mobile/service/appletpersoncenter/AppletPersonCenterService.java
+++ b/postdischarge-mobile/src/main/java/com/xinelu/mobile/service/appletpersoncenter/AppletPersonCenterService.java
@@ -32,18 +32,18 @@ public interface AppletPersonCenterService {
AjaxResult getResidentInfoById(Long residentId);
-
/**
* 根据居民表id查询患者健康档案信息
*
- * @param residentId
+ * @param residentId 居民患者id
* @return 列表信息
*/
List getHealthRecordListByResidentId(Long residentId);
/**
* 根绝id获取患者健康档案详细信息
- * @param id
+ *
+ * @param id 居民患者id
* @return 监控档案详细信息
*/
diff --git a/postdischarge-mobile/src/main/java/com/xinelu/mobile/service/appletpersoncenter/Impl/AppletPersonCenterServiceImpl.java b/postdischarge-mobile/src/main/java/com/xinelu/mobile/service/appletpersoncenter/Impl/AppletPersonCenterServiceImpl.java
index 7de53d2a..91a10c3e 100644
--- a/postdischarge-mobile/src/main/java/com/xinelu/mobile/service/appletpersoncenter/Impl/AppletPersonCenterServiceImpl.java
+++ b/postdischarge-mobile/src/main/java/com/xinelu/mobile/service/appletpersoncenter/Impl/AppletPersonCenterServiceImpl.java
@@ -130,19 +130,19 @@ public class AppletPersonCenterServiceImpl implements AppletPersonCenterService
/**
* 根据居民表id查询患者健康档案信息
*
- * @param residentId
+ * @param residentId 居民患者id
* @return 健康档案列表
*/
@Override
public List getHealthRecordListByResidentId(Long residentId) {
- return appletPersonCenterMapper.getHealthRecordListByResidentID(residentId);
+ return appletPersonCenterMapper.getHealthRecordListByResidentId(residentId);
}
/**
* 根据id获取患者患者健康档案信息
*
- * @param id
+ * @param id 居民患者id
* @return PatientInfo
*/
@Override
@@ -154,7 +154,6 @@ public class AppletPersonCenterServiceImpl implements AppletPersonCenterService
} else if (StringUtils.equals(healthRecordInfoDTO.getSignStatus(), "IN_SIGN")) {
healthRecordInfoDTO.setSignStatus("是");
}
-
return healthRecordInfoDTO;
}
}
diff --git a/postdischarge-mobile/src/main/resources/mapper/appletpersoncenter/AppletPersonCenterMapper.xml b/postdischarge-mobile/src/main/resources/mapper/appletpersoncenter/AppletPersonCenterMapper.xml
index b352fb18..b3faf801 100644
--- a/postdischarge-mobile/src/main/resources/mapper/appletpersoncenter/AppletPersonCenterMapper.xml
+++ b/postdischarge-mobile/src/main/resources/mapper/appletpersoncenter/AppletPersonCenterMapper.xml
@@ -27,10 +27,10 @@
-
+
select id, hospital_agency_name, department_name, visit_date
from patient_info
- where resident_id = #{residentID}
+ where resident_id = #{residentId}