xiaoyong931011
2022-06-06 8436adbda66025f53ff901a75af41b4528a005b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.xcong.farmer.cms.modules.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.xcong.farmer.cms.common.response.Result;
import com.xcong.farmer.cms.modules.system.dto.AdminAddUserDto;
import com.xcong.farmer.cms.modules.system.dto.AdminDeleteDto;
import com.xcong.farmer.cms.modules.system.dto.AdminUpdateUserDto;
import com.xcong.farmer.cms.modules.system.dto.AdminUserDto;
import com.xcong.farmer.cms.modules.system.entity.UserEntity;
 
public interface IUserService extends IService<UserEntity> {
 
    Result getUserInPage(AdminUserDto adminUserDto);
 
    Result addUser(AdminAddUserDto adminAddUserDto);
 
    Result activeUser(Long id);
 
    Result forbiddenUser(Long id);
 
    Result deleteUser(Long id);
 
    Result seeUserInfo(Long id);
 
    Result updateUser(AdminUpdateUserDto adminUpdateUserDto);
 
    Result resetPassword(Long id);
 
    Result userMenu();
 
    Result delObjs(AdminDeleteDto adminDeleteDto);
}