|
|
@@ -26,10 +26,7 @@ import com.fs.common.core.page.TableDataInfo;
|
|
|
import com.fs.common.core.redis.RedisCache;
|
|
|
import com.fs.common.enums.ImTypeEnum;
|
|
|
import com.fs.common.param.LoginMaWxParam;
|
|
|
-import com.fs.common.utils.DateUtils;
|
|
|
-import com.fs.common.utils.DictUtils;
|
|
|
-import com.fs.common.utils.ParseUtils;
|
|
|
-import com.fs.common.utils.StringUtils;
|
|
|
+import com.fs.common.utils.*;
|
|
|
import com.fs.company.cache.ICompanyTagCacheService;
|
|
|
import com.fs.company.cache.ICompanyUserCacheService;
|
|
|
import com.fs.company.domain.*;
|
|
|
@@ -279,7 +276,7 @@ public class FsUserServiceImpl implements IFsUserService {
|
|
|
@Override
|
|
|
public int deleteFsUserByUserIds(Long[] userIds) {
|
|
|
for (Long userId : userIds) {
|
|
|
- fsUserMapper.updateFsUserByUserId(userId);
|
|
|
+ fsUserMapper.updateFsUserByUserId(userId,null);
|
|
|
}
|
|
|
return userIds.length;
|
|
|
}
|
|
|
@@ -292,7 +289,8 @@ public class FsUserServiceImpl implements IFsUserService {
|
|
|
*/
|
|
|
@Override
|
|
|
public int deleteFsUserByUserId(Long userId) {
|
|
|
- return fsUserMapper.updateFsUserByUserId(userId);
|
|
|
+ String username = SecurityUtils.getUsername()+"删除了用户";
|
|
|
+ return fsUserMapper.updateFsUserByUserId(userId,username);
|
|
|
}
|
|
|
|
|
|
/**
|