|
@@ -3,10 +3,7 @@ package com.community.huiju.feign;
|
3
|
3
|
import com.community.commom.mode.ResponseBean;
|
4
|
4
|
import com.community.huiju.feign.impl.TaUserFeignFallBack;
|
5
|
5
|
import org.springframework.cloud.openfeign.FeignClient;
|
6
|
|
-import org.springframework.web.bind.annotation.PathVariable;
|
7
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
8
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
9
|
|
-import org.springframework.web.bind.annotation.RequestMethod;
|
|
6
|
+import org.springframework.web.bind.annotation.*;
|
10
|
7
|
|
11
|
8
|
@FeignClient(value = "app-api", fallback = TaUserFeignFallBack.class)
|
12
|
9
|
public interface TaUserFeignService {
|
|
@@ -28,7 +25,7 @@ public interface TaUserFeignService {
|
28
|
25
|
* @return
|
29
|
26
|
*/
|
30
|
27
|
@RequestMapping(value = "/pushHKPerson/{appUserId}", method = RequestMethod.POST)
|
31
|
|
- ResponseBean pushHKPerson(@PathVariable("appUserId") Integer appUserId);
|
|
28
|
+ ResponseBean pushHKPerson(@PathVariable("appUserId") Integer appUserId, @RequestParam("userVerifyId") Integer userVerifyId);
|
32
|
29
|
|
33
|
30
|
/**
|
34
|
31
|
* 异动下载门禁权限
|