| | |
| | | package org.springblade.modules.system.service; |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.Wrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.core.mp.base.BaseService; |
| | |
| | | import org.springblade.modules.system.excel.SecurityYyExcel; |
| | | import org.springblade.modules.system.excel.UserExcel; |
| | | import org.springblade.modules.system.node.TreeNode; |
| | | import org.springblade.modules.system.vo.UserInfoDetail; |
| | | import org.springblade.modules.system.vo.UserVO; |
| | | |
| | | import java.util.List; |
| | |
| | | /** |
| | | * 导出用户数据 |
| | | * |
| | | * @param queryWrapper |
| | | * @return |
| | | */ |
| | | //List<UserExcel> exportUser(Wrapper<User> queryWrapper); |
| | | List<UserExcel> exportUser(Map<String, Object> user); |
| | | |
| | | /** |
| | | * 注册用户 |
| | |
| | | * @return |
| | | */ |
| | | UserVO getUserDetailById(Long id); |
| | | |
| | | /** |
| | | * 数据处理 |
| | | * @return |
| | | */ |
| | | Object dataHandler(); |
| | | |
| | | Boolean wxRegister(User user); |
| | | |
| | | UserInfoDetail getUserInfoDetail(String id); |
| | | |
| | | boolean batchAudit(String ids, String auditStatus); |
| | | } |