| | |
| | | import com.ruoyi.common.core.domain.R; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @PostMapping(value = "/t-app-user/user/getUserById") |
| | | R<TAppUser> getUserById(Long id); |
| | | @PostMapping(value = "/t-app-user/user/getUserById/{id}") |
| | | R<TAppUser> getUserById(@PathVariable("id") Long id); |
| | | |
| | | |
| | | |
| | | @PostMapping("/t-app-user/") |
| | | R updateAppUser(TAppUser appUser); |
| | | @PostMapping("/t-app-user//user/updateAppUser") |
| | | R updateAppUser(@RequestBody TAppUser appUser); |
| | | } |