|
|
|
@ -20,6 +20,7 @@ import org.springframework.validation.annotation.Validated;
@@ -20,6 +20,7 @@ import org.springframework.validation.annotation.Validated;
|
|
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
|
|
import java.util.Arrays; |
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
*<p> |
|
|
|
@ -51,6 +52,11 @@ public class SsoUserController {
@@ -51,6 +52,11 @@ public class SsoUserController {
|
|
|
|
|
return R.ok(results.getRecords(), results.getTotal()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@GetMapping("/selectBindSsoUserList") |
|
|
|
|
public R list() { |
|
|
|
|
return R.ok(iSsoUserService.selectBindSsoUserList()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@GetMapping("/{id:\\w+}") |
|
|
|
|
public R getById(@PathVariable("id") String id) { |
|
|
|
|
return R.ok(iSsoUserService.getById(id)); |
|
|
|
|