权限相关
parent
3884ecf6e6
commit
71f991d73c
@ -0,0 +1,45 @@
|
|||||||
|
package com.glxp.udidl.admin.controller.sys;
|
||||||
|
|
||||||
|
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
|
||||||
|
import com.glxp.udidl.admin.dto.sys.SysRoleModel;
|
||||||
|
import com.glxp.udidl.admin.dto.sys.SysRoleParam;
|
||||||
|
import com.glxp.udidl.admin.service.sys.SysRoleService;
|
||||||
|
import com.glxp.udidl.common.res.BaseResponse;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestBody;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("sys/role")
|
||||||
|
public class SysRoleController {
|
||||||
|
@Autowired
|
||||||
|
SysRoleService sysRoleService;
|
||||||
|
|
||||||
|
@AuthRuleAnnotation("sys_role_all")
|
||||||
|
@PostMapping("/list")
|
||||||
|
public BaseResponse getList(@RequestBody SysRoleParam param){
|
||||||
|
return sysRoleService.list(param);
|
||||||
|
}
|
||||||
|
@AuthRuleAnnotation("sys_role_all")
|
||||||
|
@PostMapping("/insert")
|
||||||
|
public BaseResponse insert(@RequestBody SysRoleModel model){
|
||||||
|
return sysRoleService.insert(model);
|
||||||
|
}
|
||||||
|
@AuthRuleAnnotation("sys_role_all")
|
||||||
|
@PostMapping("update")
|
||||||
|
public BaseResponse update(@RequestBody SysRoleModel model){
|
||||||
|
return sysRoleService.update(model);
|
||||||
|
}
|
||||||
|
@AuthRuleAnnotation("sys_role_all")
|
||||||
|
@PostMapping("/detail")
|
||||||
|
public BaseResponse detail(Integer id){
|
||||||
|
return sysRoleService.detail(id);
|
||||||
|
}
|
||||||
|
@AuthRuleAnnotation("sys_role_all")
|
||||||
|
@PostMapping("/delete")
|
||||||
|
public BaseResponse delete(Integer id){
|
||||||
|
return sysRoleService.delete(id);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,30 @@
|
|||||||
|
package com.glxp.udidl.admin.dto.sys;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class SysRoleModel {
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
private Integer id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 角色名称
|
||||||
|
*/
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 角色代码
|
||||||
|
*/
|
||||||
|
private String code;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 状态0: 启用,1: 禁用
|
||||||
|
*/
|
||||||
|
private String status;
|
||||||
|
/**
|
||||||
|
* 排序
|
||||||
|
*/
|
||||||
|
private Integer sort;
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
package com.glxp.udidl.admin.dto.sys;
|
||||||
|
|
||||||
|
import com.glxp.udidl.admin.req.ListPageRequest;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class SysRoleParam extends ListPageRequest {
|
||||||
|
private String status;
|
||||||
|
private String name;
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
package com.glxp.udidl.admin.dto.sys;
|
||||||
|
|
||||||
|
import com.glxp.udidl.admin.req.ListPageRequest;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class SysUserParam extends ListPageRequest {
|
||||||
|
private String status;
|
||||||
|
private String name;
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
package com.glxp.udidl.admin.service.sys;
|
||||||
|
|
||||||
|
import com.glxp.udidl.admin.dto.sys.SysRoleModel;
|
||||||
|
import com.glxp.udidl.admin.dto.sys.SysRoleParam;
|
||||||
|
import com.glxp.udidl.common.res.BaseResponse;
|
||||||
|
|
||||||
|
public interface SysRoleService {
|
||||||
|
BaseResponse list(SysRoleParam param);
|
||||||
|
BaseResponse insert(SysRoleModel model);
|
||||||
|
BaseResponse update(SysRoleModel model);
|
||||||
|
BaseResponse detail(Integer id);
|
||||||
|
BaseResponse delete(Integer id);
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
package com.glxp.udidl.admin.service.sys.impl;
|
||||||
|
|
||||||
|
import com.github.pagehelper.PageHelper;
|
||||||
|
import com.github.pagehelper.PageInfo;
|
||||||
|
import com.glxp.udidl.admin.dao.sys.SysRoleMapper;
|
||||||
|
import com.glxp.udidl.admin.dto.sys.SysRoleModel;
|
||||||
|
import com.glxp.udidl.admin.dto.sys.SysRoleParam;
|
||||||
|
import com.glxp.udidl.admin.entity.sys.SysRole;
|
||||||
|
import com.glxp.udidl.admin.res.PageSimpleResponse;
|
||||||
|
import com.glxp.udidl.admin.service.sys.SysRoleService;
|
||||||
|
import com.glxp.udidl.common.res.BaseResponse;
|
||||||
|
import com.glxp.udidl.common.util.ResultVOUtils;
|
||||||
|
import org.springframework.beans.BeanUtils;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
public class SysRoleServiceImpl implements SysRoleService {
|
||||||
|
@Autowired
|
||||||
|
SysRoleMapper mapper;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BaseResponse list(SysRoleParam param) {
|
||||||
|
PageHelper.startPage(param.getPage(), param.getLimit());
|
||||||
|
List<SysRole> list = mapper.list(param);
|
||||||
|
PageInfo<SysRole> pageInfo = new PageInfo<>(list);
|
||||||
|
PageSimpleResponse<SysRole> pageSimpleResponse = new PageSimpleResponse<>();
|
||||||
|
pageSimpleResponse.setTotal(pageInfo.getTotal());
|
||||||
|
pageSimpleResponse.setList(list);
|
||||||
|
return ResultVOUtils.success(pageSimpleResponse);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BaseResponse insert(SysRoleModel model) {
|
||||||
|
SysRole sysRole = new SysRole();
|
||||||
|
BeanUtils.copyProperties(model, sysRole);
|
||||||
|
sysRole.setCreateTime(new Date());
|
||||||
|
mapper.insert(sysRole);
|
||||||
|
return ResultVOUtils.success();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BaseResponse update(SysRoleModel model) {
|
||||||
|
SysRole sysRole = mapper.selectByPrimaryKey(model.getId());
|
||||||
|
if (sysRole == null)
|
||||||
|
return ResultVOUtils.error(-1, "找不到记录");
|
||||||
|
BeanUtils.copyProperties(model, sysRole);
|
||||||
|
mapper.updateByPrimaryKey(sysRole);
|
||||||
|
return ResultVOUtils.success();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BaseResponse detail(Integer id) {
|
||||||
|
SysRole sysRole = mapper.selectByPrimaryKey(id);
|
||||||
|
if (sysRole == null)
|
||||||
|
return ResultVOUtils.error(-1, "找不到记录");
|
||||||
|
return ResultVOUtils.success(sysRole);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BaseResponse delete(Integer id) {
|
||||||
|
mapper.deleteByPrimaryKey(id);
|
||||||
|
return ResultVOUtils.success();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue