...
|
...
|
@@ -12,33 +12,83 @@ import org.springframework.security.core.context.SecurityContextHolder; |
|
|
import org.springframework.security.core.userdetails.UserDetails;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
import javax.validation.Valid;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
@RestController()
|
|
|
@RequestMapping("/perm")
|
|
|
public class PermssionController {
|
|
|
|
|
|
@Autowired
|
|
|
PermissionService permissionService;
|
|
|
|
|
|
@GetMapping("/perm/list")
|
|
|
@GetMapping("/list")
|
|
|
public PageInfo<PERMISSION> list(@RequestParam(value = "pageNum",required = false,defaultValue = "1")
|
|
|
int pageNum,
|
|
|
@RequestParam(value = "pageSize",required = false,defaultValue = "5")
|
|
|
int pageSize){
|
|
|
return permissionService.findAll(pageNum,pageSize);
|
|
|
int pageSize,
|
|
|
@RequestParam(value = "name", required = false) String name){
|
|
|
return permissionService.findAll(pageNum,pageSize, name);
|
|
|
|
|
|
}
|
|
|
|
|
|
@LogAnnotation(moduleName = "权限管理",operate = "权限添加")
|
|
|
@PostMapping("/perm/add")
|
|
|
@PostMapping("/add")
|
|
|
public ResultJson add(@RequestBody PERMISSION permission){
|
|
|
int i =permissionService.insertSelective(permission);
|
|
|
|
|
|
ResultJson resultJson = new ResultJson();
|
|
|
if (1==i){
|
|
|
resultJson = new ResultJson("200","添加账户成功");
|
|
|
resultJson = new ResultJson("200","添加成功");
|
|
|
}else {
|
|
|
resultJson = new ResultJson("500","insert faild");
|
|
|
}
|
|
|
return resultJson;
|
|
|
}
|
|
|
|
|
|
@LogAnnotation(moduleName = "权限管理",operate = "权限修改")
|
|
|
@PutMapping("/edit")
|
|
|
@ResponseBody
|
|
|
public ResultJson edit(@RequestBody @Valid PERMISSION permission){
|
|
|
|
|
|
int i =permissionService.updateByPrimaryKeySelective(permission);
|
|
|
|
|
|
ResultJson resultJson = new ResultJson();
|
|
|
if (1==i){
|
|
|
resultJson = new ResultJson("200","修改成功");
|
|
|
}else {
|
|
|
resultJson = new ResultJson("500","insert faild");
|
|
|
}
|
|
|
return resultJson;
|
|
|
}
|
|
|
|
|
|
@LogAnnotation(moduleName = "权限管理",operate = "权限删除")
|
|
|
@DeleteMapping("/del")
|
|
|
public ResultJson reomve(@RequestBody PERMISSION permission, HttpServletRequest request, HttpServletResponse response){
|
|
|
|
|
|
int i =permissionService.deleteByPrimaryKey(permission.getPermissionId().toString());
|
|
|
|
|
|
ResultJson resultJson = new ResultJson();
|
|
|
if (1==i){
|
|
|
resultJson = new ResultJson("200","删除成功");
|
|
|
}else {
|
|
|
resultJson = new ResultJson("500","insert faild");
|
|
|
}
|
|
|
return resultJson;
|
|
|
}
|
|
|
|
|
|
@LogAnnotation(moduleName = "权限管理",operate = "权限批量删除")
|
|
|
@GetMapping("/batchremove")
|
|
|
public ResultJson reomve(String ids, HttpServletRequest request, HttpServletResponse response){
|
|
|
|
|
|
ResultJson resultJson = new ResultJson();
|
|
|
|
|
|
if (permissionService.deleteByPrimaryKey(ids)>0){
|
|
|
resultJson = new ResultJson("200","删除成功");
|
|
|
}else {
|
|
|
resultJson = new ResultJson("500","insert faild");
|
|
|
}
|
...
|
...
|
|