From 15d3711a5321e9a5c38b66320ca6bff5b96a3b50 Mon Sep 17 00:00:00 2001
From: huanghongfa <huanghongfa123456>
Date: 星期六, 18 九月 2021 16:00:43 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/test' into test

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComElderAuthRecordsService.java |   25 ++++++++++++++++++++++---
 1 files changed, 22 insertions(+), 3 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComElderAuthRecordsService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComElderAuthRecordsService.java
index 20ba8ff..286ecb2e 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComElderAuthRecordsService.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComElderAuthRecordsService.java
@@ -1,16 +1,15 @@
 package com.panzhihua.service_community.service;
 
 import com.baomidou.mybatisplus.extension.service.IService;
+import com.panzhihua.common.model.dtos.community.AddIdentityAuthDTO;
+import com.panzhihua.common.model.dtos.community.PageIdentityAuthRecordDTO;
 import com.panzhihua.common.model.dtos.community.PageElderAuthRecordsDTO;
 import com.panzhihua.common.model.dtos.community.elder.PageElderAuthStatisticDTO;
 import com.panzhihua.common.model.vos.R;
 import com.panzhihua.common.model.vos.community.ComElderAuthRecordImportExcelVO;
 import com.panzhihua.common.model.vos.community.ComElderAuthRecordVO;
 import com.panzhihua.service_community.model.dos.ComElderAuthRecordsDO;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.PostMapping;
 import org.springframework.web.bind.annotation.RequestBody;
-import org.springframework.web.bind.annotation.RequestParam;
 
 import java.util.List;
 
@@ -95,4 +94,24 @@
      * @return  执行结果
      */
     R timedTaskElderAuthStatisticsJobHandler();
+    /**
+     * 新增高龄认证
+     * @param addIdentityAuthDTO 请求参数
+     * @return 新增结果
+     */
+    R addElderAuth(AddIdentityAuthDTO addIdentityAuthDTO);
+
+    /**
+     * 分页查询高龄认证记录
+     * @param pageIdentityAuthRecordDTO 查询参数
+     * @return 高龄认证记录列表
+     */
+    R queryRecordWithPage(PageIdentityAuthRecordDTO pageIdentityAuthRecordDTO);
+
+    /**
+     * 获取高龄认证详情
+     * @param identityAuthId 认证id
+     * @return 认证记录详情
+     */
+    R retrieveElderAuthDetail(Long identityAuthId);
 }

--
Gitblit v1.7.1