ADD file via upload

master
moec42frf 2 years ago
parent 6bc5954cfe
commit 5346226da7

@ -0,0 +1,63 @@
package org.sang.controller.admin;
import org.sang.bean.RespBean;
import org.sang.bean.Role;
import org.sang.bean.User;
import org.sang.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
@RestController
@RequestMapping("/admin")
public class UserManaController {
@Autowired
UserService userService;
@RequestMapping(value = "/user", method = RequestMethod.GET)
public List<User> getUserByNickname(String nickname) {
return userService.getUserByNickname(nickname);
}
@RequestMapping(value = "/user/{id}", method = RequestMethod.GET)
public User getUserById(@PathVariable Long id) {
return userService.getUserById(id);
}
@RequestMapping(value = "/roles", method = RequestMethod.GET)
public List<Role> getAllRole() {
return userService.getAllRole();
}
@RequestMapping(value = "/user/enabled", method = RequestMethod.PUT)
public RespBean updateUserEnabled(Boolean enabled, Long uid) {
if (userService.updateUserEnabled(enabled, uid) == 1) {
return new RespBean("success", "更新成功!");
} else {
return new RespBean("error", "更新失败!");
}
}
@RequestMapping(value = "/user/{uid}", method = RequestMethod.DELETE)
public RespBean deleteUserById(@PathVariable Long uid) {
if (userService.deleteUserById(uid) == 1) {
return new RespBean("success", "删除成功!");
} else {
return new RespBean("error", "删除失败!");
}
}
@RequestMapping(value = "/user/role", method = RequestMethod.PUT)
public RespBean updateUserRoles(Long[] rids, Long id) {
if (userService.updateUserRoles(rids, id) == rids.length) {
return new RespBean("success", "更新成功!");
} else {
return new RespBean("error", "更新失败!");
}
}
}
Loading…
Cancel
Save