【DAOP-1.0】企业认证
【功能点】联调问题处理
Showing
1 changed file
with
2 additions
and
1 deletions
... | @@ -7,6 +7,7 @@ import org.springframework.cloud.openfeign.FeignClient; | ... | @@ -7,6 +7,7 @@ import org.springframework.cloud.openfeign.FeignClient; |
7 | import org.springframework.http.MediaType; | 7 | import org.springframework.http.MediaType; |
8 | import org.springframework.web.bind.annotation.GetMapping; | 8 | import org.springframework.web.bind.annotation.GetMapping; |
9 | import org.springframework.web.bind.annotation.PostMapping; | 9 | import org.springframework.web.bind.annotation.PostMapping; |
10 | import org.springframework.web.bind.annotation.PutMapping; | ||
10 | import org.springframework.web.bind.annotation.RequestBody; | 11 | import org.springframework.web.bind.annotation.RequestBody; |
11 | import java.util.Map; | 12 | import java.util.Map; |
12 | 13 | ||
... | @@ -19,7 +20,7 @@ public interface PersonelFeign { | ... | @@ -19,7 +20,7 @@ public interface PersonelFeign { |
19 | @PostMapping(value = "/tenant/auth", produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE) | 20 | @PostMapping(value = "/tenant/auth", produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE) |
20 | CommonRes<Boolean> authTenant(@RequestBody TenantRQVO vo); | 21 | CommonRes<Boolean> authTenant(@RequestBody TenantRQVO vo); |
21 | 22 | ||
22 | @PostMapping(value = "/tenant/update", produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE) | 23 | @PutMapping(value = "/tenant/update", produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE) |
23 | CommonRes<Boolean> updateTenant(@RequestBody TenantRQVO vo); | 24 | CommonRes<Boolean> updateTenant(@RequestBody TenantRQVO vo); |
24 | 25 | ||
25 | @GetMapping(value = "/tenant/get-all-tenant-guid-name-map", produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE) | 26 | @GetMapping(value = "/tenant/get-all-tenant-guid-name-map", produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE) | ... | ... |
-
Please register or sign in to post a comment