ny
23 小时以前 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package jnpf.base.fallback;
 
import jnpf.base.SystemApi;
import jnpf.base.entity.SystemEntity;
import jnpf.base.model.AppAuthorizationModel;
import jnpf.base.model.base.SystemApiByIdsModel;
import jnpf.base.model.base.SystemApiListModel;
import jnpf.base.model.base.SystemApiModel;
import jnpf.permission.model.user.WorkHandoverModel;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
 
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
 
/**
 * @author :JNPF开发平台组
 * @version: V3.1.0
 * @copyright 引迈信息技术有限公司
 * @date :2022/8/1 15:12
 */
@Component
public class SystemApiFallback implements SystemApi {
 
    @Override
    public List<SystemEntity> getList() {
        return Collections.EMPTY_LIST;
    }
 
    @Override
    public List<SystemEntity> getList(SystemApiListModel model) {
        return new ArrayList<>();
    }
 
    @Override
    public List<SystemEntity> getListByIds(SystemApiByIdsModel model) {
        return new ArrayList<>();
    }
 
    @Override
    public SystemEntity getInfoById(String systemId) {
        return new SystemEntity();
    }
 
    @Override
    public SystemEntity getInfoByEnCode(String enCode) {
        return new SystemEntity();
    }
 
    @Override
    public List<SystemEntity> findSystemAdmin(@RequestBody SystemApiModel model) {
        return new ArrayList<>();
    }
 
    @Override
    public List<SystemEntity> getListAll() {
        return new ArrayList<>();
    }
 
    @Override
    public void addCommonWordsNum(String commonWordsText) {
 
    }
 
    @Override
    public List<SystemEntity> getListByCreUser(@RequestParam("userId") String userId) {
        return Collections.EMPTY_LIST;
    }
 
    @Override
    public List<SystemEntity> getAuthListByUser(@RequestParam("userId") String userId, @RequestParam(value = "isStand")Boolean isStand) {
        return Collections.EMPTY_LIST;
    }
 
    @Override
    public void workHandover(WorkHandoverModel workHandoverModel) {
    }
 
    @Override
    public void changeSystemAuthorizion(AppAuthorizationModel model) {
    }
}