洪城义警-正式版后台
zhongrj
2023-06-27 2ca9993b57bdd090c4345ea6767687e2fbb83014
src/main/java/org/springblade/modules/system/service/IUserService.java
@@ -28,6 +28,9 @@
import org.springblade.modules.system.entity.UserInfo;
import org.springblade.modules.system.entity.UserOauth;
import org.springblade.modules.system.excel.UserExcel;
import org.springblade.modules.system.excel.UserExcels;
import org.springblade.modules.system.vo.UserDistrictStatisVO;
import org.springblade.modules.system.vo.UserRegisterStatisVO;
import org.springblade.modules.system.vo.UserVO;
import org.springblade.modules.system.vo.UsersVo;
@@ -199,10 +202,9 @@
   /**
    * 导出用户数据
    *
    * @param queryWrapper
    * @return
    */
   List<UserExcel> exportUser(Wrapper<User> queryWrapper);
   List<UserExcel> exportUser(User user);
   /**
    * 注册用户
@@ -256,4 +258,42 @@
   R<Boolean> saveUser(User user);
   List<Map<String, Object>> selectUser();
   /**
    * 统计用户注册数据
    * @return
    */
   List<UserRegisterStatisVO> getUserRegisterStatisticsData();
   /**
    * 统计六大队伍
    */
   List<UserRegisterStatisVO> getUserTypeCount();
   List<UserRegisterStatisVO> getUserTypeCountXq(String  xid);
   List<UserVO> getUserTypeList(String xid,String index);
   List<UserDistrictStatisVO> getUserDistrictTypeCount();
   /**
    * 查询用户数据,未删除的,未审核的
    * @return
    */
   List<User> getNotAuditAllUserList();
   /**
    * 查询账号相同的用户数量
    * @param account
    * @return
    */
   Integer selectCount(String account);
   void updateAcc(String stype,String account);
   boolean firstLogin(String id);
   void delete(String account);
   /**
    * 保安员导入
    * @param data
    * @param isCovered
    */
   void importUsers(List<UserExcels> data, Boolean isCovered);
}