ludc
2023-07-14 c092522971add0ae88926eafe8adc906b9d9391c
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
/*
 *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions are met:
 *
 *  Redistributions of source code must retain the above copyright notice,
 *  this list of conditions and the following disclaimer.
 *  Redistributions in binary form must reproduce the above copyright
 *  notice, this list of conditions and the following disclaimer in the
 *  documentation and/or other materials provided with the distribution.
 *  Neither the name of the dreamlu.net developer nor the names of its
 *  contributors may be used to endorse or promote products derived from
 *  this software without specific prior written permission.
 *  Author: Chill 庄骞 (smallchill@163.com)
 */
package com.vci.ubcs.system.feign;
 
import com.vci.ubcs.system.entity.*;
import org.springblade.core.launch.constant.AppConstant;
import org.springblade.core.tool.api.R;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
 
import java.util.List;
 
/**
 * Feign接口类
 *
 * @author Chill
 */
@FeignClient(
    value = AppConstant.APPLICATION_SYSTEM_NAME,
    fallback = ISysClientFallback.class
)
public interface ISysClient {
 
    String API_PREFIX = "/client";
    String MENU = API_PREFIX + "/menu";
    String MENU_BUTTON = API_PREFIX + "/menu-button";
    String DEPT = API_PREFIX + "/dept";
    String DEPT_IDS = API_PREFIX + "/dept-ids";
    String DEPT_IDS_FUZZY = API_PREFIX + "/dept-ids-fuzzy";
    String DEPT_NAME = API_PREFIX + "/dept-name";
    String DEPT_NAMES = API_PREFIX + "/dept-names";
    String DEPT_CHILD = API_PREFIX + "/dept-child";
    String POST = API_PREFIX + "/post";
    String POST_IDS = API_PREFIX + "/post-ids";
    String POST_IDS_FUZZY = API_PREFIX + "/post-ids-fuzzy";
    String POST_NAME = API_PREFIX + "/post-name";
    String POST_NAMES = API_PREFIX + "/post-names";
    String ROLE = API_PREFIX + "/role";
    String ROLE_IDS = API_PREFIX + "/role-ids";
    String ROLE_NAME = API_PREFIX + "/role-name";
    String ROLE_NAMES = API_PREFIX + "/role-names";
    String ROLE_ALIAS = API_PREFIX + "/role-alias";
    String ROLE_ALIASES = API_PREFIX + "/role-aliases";
    String TENANT = API_PREFIX + "/tenant";
    String TENANT_ID = API_PREFIX + "/tenant-id";
    //查询超级管理员
    String TENANT_MGR_ID = API_PREFIX + "/tenant-mgr-id";
    String TENANT_PACKAGE = API_PREFIX + "/tenant-package";
    String PARAM = API_PREFIX + "/param";
    String PARAM_VALUE = API_PREFIX + "/param-value";
    String REGION = API_PREFIX + "/region";
    String STRATEGY = API_PREFIX + "/query-tenantid-name";
    String STRATEGYBYID = API_PREFIX + "/query-userid";
    String REGEX = API_PREFIX + "/combination-regex";
    String REGEXONE = API_PREFIX + "/combination-regex-one";
 
    /**
     * 获取菜单
     *
     * @param id 主键
     * @return Menu
     */
    @GetMapping(MENU)
    R<Menu> getMenu(@RequestParam("id") Long id);
 
    /**
     * 获取菜单下面的按钮
     *
     * @param btmType 业务类型
     * @return List<Menu>
     */
    @GetMapping(MENU_BUTTON)
    R<List<Menu>> getMenuButtonByType(@RequestParam("btmType") String btmType);
 
    /**
     * 获取部门
     *
     * @param id 主键
     * @return Dept
     */
    @GetMapping(DEPT)
    R<Dept> getDept(@RequestParam("id") Long id);
 
    /**
     * 获取部门id
     *
     * @param tenantId  租户id
     * @param deptNames 部门名
     * @return 部门id
     */
    @GetMapping(DEPT_IDS)
    R<String> getDeptIds(@RequestParam("tenantId") String tenantId, @RequestParam("deptNames") String deptNames);
 
    /**
     * 获取部门id
     *
     * @param tenantId  租户id
     * @param deptNames 部门名
     * @return 部门id
     */
    @GetMapping(DEPT_IDS_FUZZY)
    R<String> getDeptIdsByFuzzy(@RequestParam("tenantId") String tenantId, @RequestParam("deptNames") String deptNames);
 
    /**
     * 获取部门名
     *
     * @param id 主键
     * @return 部门名
     */
    @GetMapping(DEPT_NAME)
    R<String> getDeptName(@RequestParam("id") Long id);
 
    /**
     * 获取部门名
     *
     * @param deptIds 主键
     * @return
     */
    @GetMapping(DEPT_NAMES)
    R<List<String>> getDeptNames(@RequestParam("deptIds") String deptIds);
 
    /**
     * 获取子部门ID
     *
     * @param deptId
     * @return
     */
    @GetMapping(DEPT_CHILD)
    R<List<Dept>> getDeptChild(@RequestParam("deptId") Long deptId);
 
    /**
     * 获取岗位
     *
     * @param id 主键
     * @return Post
     */
    @GetMapping(POST)
    R<Post> getPost(@RequestParam("id") Long id);
 
    /**
     * 获取岗位id
     *
     * @param tenantId  租户id
     * @param postNames 岗位名
     * @return 岗位id
     */
    @GetMapping(POST_IDS)
    R<String> getPostIds(@RequestParam("tenantId") String tenantId, @RequestParam("postNames") String postNames);
 
    /**
     * 获取岗位id
     *
     * @param tenantId  租户id
     * @param postNames 岗位名
     * @return 岗位id
     */
    @GetMapping(POST_IDS_FUZZY)
    R<String> getPostIdsByFuzzy(@RequestParam("tenantId") String tenantId, @RequestParam("postNames") String postNames);
 
    /**
     * 获取岗位名
     *
     * @param id 主键
     * @return 岗位名
     */
    @GetMapping(POST_NAME)
    R<String> getPostName(@RequestParam("id") Long id);
 
    /**
     * 获取岗位名
     *
     * @param postIds 主键
     * @return
     */
    @GetMapping(POST_NAMES)
    R<List<String>> getPostNames(@RequestParam("postIds") String postIds);
 
    /**
     * 获取角色
     *
     * @param id 主键
     * @return Role
     */
    @GetMapping(ROLE)
    R<Role> getRole(@RequestParam("id") Long id);
 
    /**
     * 获取角色id
     *
     * @param tenantId  租户id
     * @param roleNames 角色名
     * @return 角色id
     */
    @GetMapping(ROLE_IDS)
    R<String> getRoleIds(@RequestParam("tenantId") String tenantId, @RequestParam("roleNames") String roleNames);
 
    /**
     * 获取角色名
     *
     * @param id 主键
     * @return 角色名
     */
    @GetMapping(ROLE_NAME)
    R<String> getRoleName(@RequestParam("id") Long id);
 
    /**
     * 获取角色别名
     *
     * @param id 主键
     * @return 角色别名
     */
    @GetMapping(ROLE_ALIAS)
    R<String> getRoleAlias(@RequestParam("id") Long id);
 
    /**
     * 获取角色名
     *
     * @param roleIds 主键
     * @return
     */
    @GetMapping(ROLE_NAMES)
    R<List<String>> getRoleNames(@RequestParam("roleIds") String roleIds);
 
    /**
     * 获取角色别名
     *
     * @param roleIds 主键
     * @return 角色别名
     */
    @GetMapping(ROLE_ALIASES)
    R<List<String>> getRoleAliases(@RequestParam("roleIds") String roleIds);
 
    /**
     * 获取租户
     *
     * @param id 主键
     * @return Tenant
     */
    @GetMapping(TENANT)
    R<Tenant> getTenant(@RequestParam("id") Long id);
 
    /**
     * 获取租户
     *
     * @param tenantId 租户id
     * @return Tenant
     */
    @GetMapping(TENANT_ID)
    R<Tenant> getTenant(@RequestParam("tenantId") String tenantId);
 
    /**
     * 获取租户产品包
     *
     * @param tenantId 租户id
     * @return Tenant
     */
    @GetMapping(TENANT_PACKAGE)
    R<TenantPackage> getTenantPackage(@RequestParam("tenantId") String tenantId);
 
    /**
     * 获取参数
     *
     * @param id 主键
     * @return Param
     */
    @GetMapping(PARAM)
    R<Param> getParam(@RequestParam("id") Long id);
 
    /**
     * 获取参数配置
     *
     * @param paramKey 参数key
     * @return String
     */
    @GetMapping(PARAM_VALUE)
    R<String> getParamValue(@RequestParam("paramKey") String paramKey);
 
    /**
     * 获取行政区划
     *
     * @param code 主键
     * @return Region
     */
    @GetMapping(REGION)
    R<Region> getRegion(@RequestParam("code") String code);
 
    /**
     * 根据租户id以及用户名获取密码策略
     * @param tenantId
     * @param name
     * @return
     */
    @PostMapping(STRATEGY)
    R<Strategy>  getByTenantIdAndName(@RequestParam("tenantId") String tenantId, @RequestParam("name") String name);
 
    /**
     * 根据用户id获取密码策略
     * @param userId
     * @return
     */
    @PostMapping(STRATEGYBYID)
    R<Strategy>  getByUserId(@RequestParam("id") Long userId);
 
    /**
     * 根据组合方式id获取值
     * @return
     */
    @PostMapping(REGEX)
    R<String> getRegex(@RequestBody List<String> combinationIds);
 
    /**
     * 根据组合方式id获取值
     * @return
     */
    @PostMapping(REGEXONE)
    R<List<String>> getRegexByList(@RequestBody List<String> combinationIds);
 
}