|
@@ -49,17 +49,19 @@ class UserController : BaseController() {
|
|
|
|
|
|
@PutMapping
|
|
|
@ZenResponseFilter(type = SysUser::class, filter = ["createTime", "createBy", "updateTime", "updateBy", "password", "salt"])
|
|
|
+ // @ZenRequestTypes(KVType("user", SysUser::class), KVType("roles", List::class))
|
|
|
fun putUser(@RequestBody data: SysUser): ResponseEntity<*> {
|
|
|
- return if (data.id == null) {
|
|
|
- // insert
|
|
|
- userService.insertCacheable(data)
|
|
|
- ResponseEntity.created(URI.create("/user/${data.id}")).body(ResponseDto()) // 201
|
|
|
- } else {
|
|
|
- // update
|
|
|
- ResponseEntity.ok(ResponseDto().apply {
|
|
|
- this.data = userService.modify(data) // 200
|
|
|
- })
|
|
|
- }
|
|
|
+ return ResponseEntity.ok(null)
|
|
|
+// return if (data.id == null) {
|
|
|
+// // insert
|
|
|
+// userService.insertCacheable(data)
|
|
|
+// ResponseEntity.created(URI.create("/user/${data.id}")).body(ResponseDto()) // 201
|
|
|
+// } else {
|
|
|
+// // update
|
|
|
+// ResponseEntity.ok(ResponseDto().apply {
|
|
|
+// this.data = userService.modify(data) // 200
|
|
|
+// })
|
|
|
+// }
|
|
|
}
|
|
|
|
|
|
@DeleteMapping("{id}")
|
|
@@ -77,7 +79,7 @@ class UserController : BaseController() {
|
|
|
@RequestParam(required = false) searchOption: Int?): ResponseEntity<*> {
|
|
|
// 获取用户列表(忽略enable)
|
|
|
var data: MutableList<SysUser> = userService.getListCacheable()
|
|
|
- if (!keyword.isNullOrEmpty()) {
|
|
|
+ if (!keyword.isNullOrEmpty() && searchOption != null) {
|
|
|
data = data.filter {
|
|
|
when (searchOption) {
|
|
|
1 -> run {
|