123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- /*
- * Copyright 2019-2020 Zheng Jie
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package me.zhengjie.modules.system.service;
- import me.zhengjie.modules.system.domain.User;
- import me.zhengjie.modules.system.service.dto.UserDto;
- import me.zhengjie.modules.system.service.dto.UserQueryCriteria;
- import org.springframework.data.domain.Pageable;
- import org.springframework.web.multipart.MultipartFile;
- import javax.servlet.http.HttpServletResponse;
- import java.io.IOException;
- import java.util.List;
- import java.util.Map;
- import java.util.Set;
- /**
- * @author Zheng Jie
- * @date 2018-11-23
- */
- public interface UserService {
- /**
- * 根据ID查询
- * @param id ID
- * @return /
- */
- UserDto findById(String id);
- /**
- * 根据账号查询
- * @param username 账号
- * @return /
- */
- UserDto findByUsername(String username);
- /**
- * 新增用户
- * @param resources /
- */
- void create(User resources);
- /**
- * 编辑用户
- * @param resources /
- */
- void update(User resources) throws Exception;
- /**
- * 新增用户
- * @param resources /
- */
- void createSync(User resources);
- /**
- * 编辑用户
- * @param resources /
- */
- void updateSync(User resources) throws Exception;
- /**
- * 删除用户
- * @param ids /
- */
- void delete(Set<String> ids);
- /**
- * 根据用户名查询
- * @param userName /
- * @return /
- */
- UserDto findByName(String userName);
- /**
- * 修改密码
- * @param username 用户名
- * @param encryptPassword 密码
- */
- void updatePass(String username, String encryptPassword, String ossPassword);
- /**
- * 修改密码
- * @param userId 用户名
- * @param encryptPassword 密码
- */
- void updatePassById(String userId, String encryptPassword);
- /**
- * 修改头像
- * @param file 文件
- * @return /
- */
- Map<String, String> updateAvatar(MultipartFile file);
- /**
- * 修改邮箱
- * @param username 用户名
- * @param email 邮箱
- */
- void updateEmail(String username, String email);
- /**
- * 查询全部
- * @param criteria 条件
- * @param pageable 分页参数
- * @return /
- */
- Object queryAll(UserQueryCriteria criteria, Pageable pageable);
- /**
- * 查询全部不分页
- * @param criteria 条件
- * @return /
- */
- List<UserDto> queryAll(UserQueryCriteria criteria);
- /**
- * 导出数据
- * @param queryAll 待导出的数据
- * @param response /
- * @throws IOException /
- */
- void download(List<UserDto> queryAll, HttpServletResponse response) throws IOException;
- /**
- * 用户自助修改资料
- * @param resources /
- */
- void updateCenter(User resources);
- List<User> findByDmUserId(String dmUserId,String userId);
- /**
- * 解绑用户
- * @param ids
- */
- void unBindDmUser(Set<String> ids) throws Exception;
- /**
- * 根据账号查询密码
- * @param username
- */
- String findPassWord(String username);
- }
|