角色授权
parent
71f991d73c
commit
e61cdcf69c
@ -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.SysUserModel;
|
||||
import com.glxp.udidl.admin.dto.sys.SysUserParam;
|
||||
import com.glxp.udidl.admin.service.sys.SysUserService;
|
||||
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/user")
|
||||
public class SysUserController {
|
||||
@Autowired
|
||||
SysUserService sysUserService;
|
||||
|
||||
@AuthRuleAnnotation("sys_user_all")
|
||||
@PostMapping("/list")
|
||||
public BaseResponse getList(@RequestBody SysUserParam param){
|
||||
return sysUserService.list(param);
|
||||
}
|
||||
@AuthRuleAnnotation("sys_user_all")
|
||||
@PostMapping("/insert")
|
||||
public BaseResponse insert(@RequestBody SysUserModel model){
|
||||
return sysUserService.insert(model);
|
||||
}
|
||||
@AuthRuleAnnotation("sys_user_all")
|
||||
@PostMapping("update")
|
||||
public BaseResponse update(@RequestBody SysUserModel model){
|
||||
return sysUserService.update(model);
|
||||
}
|
||||
@AuthRuleAnnotation("sys_user_all")
|
||||
@PostMapping("/detail")
|
||||
public BaseResponse detail(Integer id){
|
||||
return sysUserService.detail(id);
|
||||
}
|
||||
@AuthRuleAnnotation("sys_user_all")
|
||||
@PostMapping("/delete")
|
||||
public BaseResponse delete(Integer id){
|
||||
return sysUserService.delete(id);
|
||||
}
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.glxp.udidl.admin.dto.sys;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
public class RoleMenuTreeModel {
|
||||
private List<MenuTreeModel> menuTrees;
|
||||
private List<Integer> roleMenuIds;
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package com.glxp.udidl.admin.dto.sys;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class SysRoleMenuModel {
|
||||
private Integer roleId;
|
||||
private List<Integer> menuIds;
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.glxp.udidl.admin.service.sys;
|
||||
|
||||
import com.glxp.udidl.admin.dto.sys.SysUserModel;
|
||||
import com.glxp.udidl.admin.dto.sys.SysUserParam;
|
||||
import com.glxp.udidl.common.res.BaseResponse;
|
||||
|
||||
public interface SysUserService {
|
||||
BaseResponse list(SysUserParam param);
|
||||
BaseResponse insert(SysUserModel model);
|
||||
BaseResponse update(SysUserModel model);
|
||||
BaseResponse detail(Integer id);
|
||||
BaseResponse delete(Integer id);
|
||||
}
|
@ -0,0 +1,73 @@
|
||||
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.SysUserMapper;
|
||||
import com.glxp.udidl.admin.dto.sys.SysUserModel;
|
||||
import com.glxp.udidl.admin.dto.sys.SysUserParam;
|
||||
import com.glxp.udidl.admin.entity.sys.SysUser;
|
||||
import com.glxp.udidl.admin.res.PageSimpleResponse;
|
||||
import com.glxp.udidl.admin.service.sys.SysUserService;
|
||||
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;
|
||||
import java.util.UUID;
|
||||
|
||||
@Service
|
||||
public class SysUserServiceImpl implements SysUserService {
|
||||
@Autowired
|
||||
SysUserMapper mapper;
|
||||
@Override
|
||||
public BaseResponse list(SysUserParam param) {
|
||||
PageHelper.startPage(param.getPage(), param.getLimit());
|
||||
List<SysUser> list = mapper.list(param);
|
||||
PageInfo<SysUser> pageInfo = new PageInfo<>(list);
|
||||
PageSimpleResponse<SysUser> pageSimpleResponse = new PageSimpleResponse<>();
|
||||
pageSimpleResponse.setTotal(pageInfo.getTotal());
|
||||
pageSimpleResponse.setList(list);
|
||||
return ResultVOUtils.success(pageSimpleResponse);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BaseResponse insert(SysUserModel model) {
|
||||
SysUser sysUser = new SysUser();
|
||||
BeanUtils.copyProperties(model, sysUser);
|
||||
sysUser.setCreateTime(new Date());
|
||||
sysUser.setUserKey(getUUId());
|
||||
mapper.insert(sysUser);
|
||||
return ResultVOUtils.success();
|
||||
}
|
||||
|
||||
@Override
|
||||
public BaseResponse update(SysUserModel model) {
|
||||
SysUser sysUser = mapper.selectByPrimaryKey(model.getId());
|
||||
if (sysUser == null)
|
||||
return ResultVOUtils.error(-1, "找不到记录");
|
||||
BeanUtils.copyProperties(model, sysUser);
|
||||
mapper.updateByPrimaryKey(sysUser);
|
||||
return ResultVOUtils.success();
|
||||
}
|
||||
|
||||
@Override
|
||||
public BaseResponse detail(Integer id) {
|
||||
SysUser sysUser = mapper.selectByPrimaryKey(id);
|
||||
if (sysUser == null)
|
||||
return ResultVOUtils.error(-1, "找不到记录");
|
||||
return ResultVOUtils.success(sysUser);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BaseResponse delete(Integer id) {
|
||||
mapper.deleteByPrimaryKey(id);
|
||||
return ResultVOUtils.success();
|
||||
}
|
||||
private String getUUId() {
|
||||
UUID uuid = UUID.randomUUID();
|
||||
return uuid.toString().replace("-", "");
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue