UsersService.java
915 Bytes
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package com.cnlive.shenhe.service;
import com.cnlive.shenhe.dto.UsersDTO;
import com.cnlive.shenhe.entity.ShyUsers;
import com.github.pagehelper.PageInfo;
/**
* @Author: yan-zhao-wang
* @DateTime: 2022-11-08 9:15
*/
public interface UsersService {
/**
* 用户分页列表
*
* @param usersDTO
* @return
*/
PageInfo<ShyUsers> getPage(UsersDTO usersDTO);
/**
* 根据spid查询名字
*
* @param shenAuditorId
* @return
*/
String findSpIdByName(String shenAuditorId);
/**
* 根据主键id查询用户对象
*
* @param id
* @return
*/
ShyUsers get(Integer id);
/**
* 根据对象查询
*
* @param shyUsers
* @return
*/
ShyUsers select(ShyUsers shyUsers);
/**
* 修改用户
*
* @param shyUsers
* @return
*/
boolean update(ShyUsers shyUsers);
}