| | |
| | | import org.springblade.modules.system.excel.UserImporters; |
| | | import org.springblade.modules.system.service.IRoleService; |
| | | import org.springblade.modules.system.service.IUserService; |
| | | import org.springblade.modules.system.vo.UserRegisterStatisVO; |
| | | import org.springblade.modules.system.vo.UserVO; |
| | | import org.springblade.modules.system.vo.UsersVo; |
| | | import org.springblade.modules.system.wrapper.UserWrapper; |
| | | import org.springblade.modules.taskqd.vo.TaskqdVO; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | |
| | | return R.status(status); |
| | | } |
| | | |
| | | /** |
| | | * 人员统计 |
| | | */ |
| | | @GetMapping("/userCount") |
| | | public R cancelTask(String xid,String index) { |
| | | List<UserRegisterStatisVO> cout = userService.getUserTypeCountXq(xid); |
| | | List<UserVO> list = userService.getUserTypeList(xid,index); |
| | | Map<String,Object> res = new HashMap<>(); |
| | | res.put("cout",cout); |
| | | res.put("list",list); |
| | | return R.data(res); |
| | | } |
| | | |
| | | |
| | | } |
| | | |