From 3851bbe241d3f5caa9b208d6740b94f6d537b5c2 Mon Sep 17 00:00:00 2001 From: tangzy <tangzy123456> Date: Mon, 29 Nov 2021 11:30:52 +0800 Subject: [PATCH] 1.押运人员编码查询 --- src/main/java/org/springblade/modules/information/service/IInformationService.java | 14 +++++++++++--- 1 files changed, 11 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..32e1a58 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,11 @@ * @return */ void importInfor(List<InforExcel> data, Boolean isCovered); + + /** + * 根据deptid 删除用户信息 + * @param deptId + */ + void deleteUserByDeptId(String deptId); + String selJurchilder(String id); } -- Gitblit v1.9.3