From 37e8b95d39c30dd0f59d2dcc2b73fb64ee493a42 Mon Sep 17 00:00:00 2001 From: Administrator <admin> Date: Wed, 27 Oct 2021 15:38:36 +0800 Subject: [PATCH] 保安员新增修改接口修改 --- src/main/java/org/springblade/modules/information/service/IInformationService.java | 13 ++++++++++--- 1 files changed, 10 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/springblade/modules/information/service/IInformationService.java b/src/main/java/org/springblade/modules/information/service/IInformationService.java index 93cbe77..827c3f5 100644 --- a/src/main/java/org/springblade/modules/information/service/IInformationService.java +++ b/src/main/java/org/springblade/modules/information/service/IInformationService.java @@ -21,6 +21,7 @@ import org.springblade.modules.information.entity.Information; import org.springblade.modules.information.excel.InforExcel; import org.springblade.modules.information.vo.InformationVO; +import org.springblade.modules.system.entity.User; import org.springblade.modules.system.excel.UserExcel; import java.util.List; @@ -42,10 +43,10 @@ * @return */ IPage<InformationVO> selectInformationPage(IPage<InformationVO> page, InformationVO information); - void deleteIn(String creditCode); - void deleteSh(String creditCode); + void deleteIn(String departmentid); + void deleteSh(String deptId); void insertIn(Information information); - void deleteMe(String creditCode); + void deleteMe(String deptId); Map selectCount(String departmentid); List<Map<Object,String>> selectInCount(); void deleteDept(String departmentid); @@ -72,4 +73,10 @@ * @return */ void importInfor(List<InforExcel> data, Boolean isCovered); + + /** + * 根据deptid 删除用户信息 + * @param deptId + */ + void deleteUserByDeptId(String deptId); } -- Gitblit v1.9.3