| | |
| | | import com.ruoyi.common.core.constant.ServiceNameConstants; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | |
| | | /** |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @PostMapping("/t-app-user-address/getAppUserAddressById") |
| | | R<TAppUserAddress> getAppUserAddressById(Long id); |
| | | @PostMapping("/t-app-user-address/getAppUserAddressById/{id}") |
| | | R<TAppUserAddress> getAppUserAddressById(@PathVariable("id") Long id); |
| | | } |