4
hao
2025-04-16 c5fb1fbcbb2bf4d511773d348f9ef625855c61fc
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package com.system.user.service;
 
import org.springframework.data.domain.PageRequest;
 
import com.app.base.data.ApiResponseResult;
import com.system.user.entity.SysUser;
 
import java.sql.SQLException;
import java.util.Date;
import java.util.List;
import java.util.Map;
 
public interface SysUserService {
 
    public ApiResponseResult add(SysUser sysUser) throws Exception;
    
    public ApiResponseResult edit(SysUser sysUser) throws Exception;
 
    public ApiResponseResult delete(Long id) throws Exception;
 
    public ApiResponseResult changePassword(String oldPassword, String password, String rePassword) throws Exception;
 
    public ApiResponseResult resetPassword(Long id, String password, String rePassword) throws Exception;
 
    //获取当前登录用户信息
    public ApiResponseResult getUserInfo() throws Exception;
 
    public ApiResponseResult getUserInfo(String userCode) throws Exception;
    
    public SysUser findByUserCode2(String userCode) throws Exception;
    
    public ApiResponseResult getList(String keyword, String userName, String mobile, Date createdTimeStart, Date createdTimeEnd, PageRequest pageRequest) throws Exception;
 
    public ApiResponseResult getUserAndRoles(Long id) throws Exception;
 
    public ApiResponseResult doJob(Long id, Integer isJob) throws Exception;
    
 
    
//手持
    public ApiResponseResult changePassword(String loginName, String oldPassword, String password, String rePassword) throws Exception;
    
    public List<Map<String, Object>> findByUserCode(String userCode) throws Exception;
    
    public List<Map<String, Object>> queryVersion() throws Exception;
    
    public List<Map<String, Object>> queryRunEnv() throws Exception;
    
    public List queryPurview(String userno) throws Exception;
    
    public ApiResponseResult getRfSetup(String functionName) throws Exception;
    
    public ApiResponseResult getExcProc(String functionName,String fileName,String pmachtype,String fileValue, String outFiles) throws Exception;
    
    public ApiResponseResult getlist(String usercode,String username,PageRequest pageRequest) throws Exception;
    
    public ApiResponseResult queryAppVersion() throws Exception;
    
    public ApiResponseResult changPsw(String userCode,String newp) throws Exception;
 
    public ApiResponseResult getPrintInfo(List<String> list) throws Exception;
 
    public ApiResponseResult getExcuteSql(String str) throws Exception;
 
    //列表功能返回游标
    ApiResponseResult getCursor(String functionName, String fileName, String pmachtype,String fileValue, String outFiles) throws SQLException;
}