package com.dsh.account.feignclient.other; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; @FeignClient(value = "mb-cloud-other") public interface SysLogClient { @PostMapping("/appUser/logOut") void logOut(@RequestBody Integer appUserId); @PostMapping("/appUser/cancellation") void cancellation(@RequestBody Integer appUserId); }