From 68a3e4c053d15961ede69fe7698f63fe827624c3 Mon Sep 17 00:00:00 2001 From: puhanshu <a9236326> Date: 星期一, 13 九月 2021 16:08:44 +0800 Subject: [PATCH] Merge branch 'test' of http://gitlab.nhys.cdnhxx.com/root/zhihuishequ into auth --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComPensionAuthRecordService.java | 75 +++++++++++++++++++++++++++++++++++++ 1 files changed, 75 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComPensionAuthRecordService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComPensionAuthRecordService.java index c6e5005..9ef6c12 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComPensionAuthRecordService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComPensionAuthRecordService.java @@ -1,9 +1,14 @@ package com.panzhihua.service_community.service; +import java.util.List; + import com.baomidou.mybatisplus.extension.service.IService; import com.panzhihua.common.model.dtos.community.AddIdentityAuthDTO; +import com.panzhihua.common.model.dtos.community.PageElderAuthRecordsDTO; import com.panzhihua.common.model.dtos.community.PageIdentityAuthRecordDTO; import com.panzhihua.common.model.vos.R; +import com.panzhihua.common.model.vos.community.ComPensionAuthRecordImportExcelVO; +import com.panzhihua.common.model.vos.community.ComPensionAuthRecordVO; import com.panzhihua.service_community.model.dos.ComPensionAuthRecordDO; /** @@ -16,6 +21,76 @@ public interface ComPensionAuthRecordService extends IService<ComPensionAuthRecordDO> { /** + * 分页查询养老金人员认证记录 pagePensionAuthRecords 分页查询养老金人员认证记录 + * @param pageElderAuthRecordsDTO 查询参数 + * @return R 查询结果 + * @author txb + * @date 2021/9/07 14:03 + */ + R pagePensionAuthRecords(PageElderAuthRecordsDTO pageElderAuthRecordsDTO); + + /** + * 根据养老认证记录id查询详情 detailPensionAuthRecords 根据养老认证记录id查询详情 + * @param authRecordId 养老认证记录id + * @return R 查询结果 + * @author txb + * @date 2021/9/07 11:03 + */ + R detailPensionAuthRecords(Long authRecordId); + + /** + * 养老认证审核 examinePensionAuthRecords 养老认证审核 + * @param comPensionAuthRecordVO 养老认证审核参数 + * @return R 查询结果 + * @author txb + * @date 2021/9/07 11:03 + */ + R examinePensionAuthRecords(ComPensionAuthRecordVO comPensionAuthRecordVO); + + /** + * 养老认证标记 signPensionAuthRecords 养老认证标记 + * @param comPensionAuthRecordVO 养老认证标记参数 + * @return R 查询结果 + * @author txb + * @date 2021/9/02 11:03 + */ + R signPensionAuthRecords(ComPensionAuthRecordVO comPensionAuthRecordVO); + + /** + * 根据养老认证记录id批量查询 getPensionAuthRecordsByIds 根据养老认证记录id批量查询 + * @param ids 养老认证记录id集合 + * @return R 查询结果 + * @author txb + * @date 2021/9/02 11:03 + */ + R getPensionAuthRecordsByIds(List<Long> ids); + + /** + * 批量导入养老线下认证记录 listSavePensionAuthRecordExcelVO 批量导入养老线下认证记录 + * @param list 养老线下认证记录数据 + * @param communityId 社区id + * @param userId 登录人id + * @return R 导入结果 + * @author txb + * @date 2021/9/08 10:03 + */ + R listSavePensionAuthRecordExcelVO(List<ComPensionAuthRecordImportExcelVO> list, Long communityId, Long userId); + + /** + * 导出养老认证记录 exportPensionAuthRecordsStatistic 导出养老认证记录 + * @param pageElderAuthRecordsDTO 查询参数 + * @return R 查询结果 + * @author txb + * @date 2021/9/02 11:03 + */ + R exportPensionAuthRecordsStatistic(PageElderAuthRecordsDTO pageElderAuthRecordsDTO); + + /** + * 定时任务每年3月1号0点统计养老认证本期应该认证总人数 + * @return 执行结果 + */ + R timedTaskPensionAuthStatisticsJobHandler(); + /** * 新增养老认证 * @param addIdentityAuthDTO 请求参数 * @return 新增结果 -- Gitblit v1.7.1