|
@@ -1,39 +0,0 @@
|
1
|
|
-package com.community.huiju.feign;
|
2
|
|
-
|
3
|
|
-import com.community.commom.mode.ResponseBean;
|
4
|
|
-import com.community.huiju.feign.impl.TaUserFeignFallBack;
|
5
|
|
-import org.springframework.cloud.openfeign.FeignClient;
|
6
|
|
-import org.springframework.web.bind.annotation.*;
|
7
|
|
-
|
8
|
|
-@FeignClient(value = "app-api", fallback = TaUserFeignFallBack.class)
|
9
|
|
-public interface TaUserFeignService {
|
10
|
|
-
|
11
|
|
- /**
|
12
|
|
- * 注册
|
13
|
|
- * JSON类型
|
14
|
|
- * userName用户姓名;idCard身份证;gender性别(1:男 2:女);loginName手机号;code验证码
|
15
|
|
- *
|
16
|
|
- * @param parameter
|
17
|
|
- * @return
|
18
|
|
- */
|
19
|
|
- @RequestMapping(value = "/user/register",method = RequestMethod.POST)
|
20
|
|
- ResponseBean register(@RequestBody String parameter);
|
21
|
|
-
|
22
|
|
- /**
|
23
|
|
- * 推送海康人员添加
|
24
|
|
- * @param appUserId
|
25
|
|
- * @return
|
26
|
|
- */
|
27
|
|
- @RequestMapping(value = "/pushHKPerson/{appUserId}", method = RequestMethod.POST)
|
28
|
|
- ResponseBean pushHKPerson(@PathVariable("appUserId") Integer appUserId, @RequestParam("userVerifyId") Integer userVerifyId);
|
29
|
|
-
|
30
|
|
- /**
|
31
|
|
- * 异动下载门禁权限
|
32
|
|
- * @return
|
33
|
|
- */
|
34
|
|
- @RequestMapping(value = "/downloadAuthorityByDeviceUuids", method = RequestMethod.POST)
|
35
|
|
- ResponseBean downloadAuthorityByDeviceUuids();
|
36
|
|
-
|
37
|
|
-
|
38
|
|
-
|
39
|
|
-}
|