权限相关
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();
|
||||
}
|
||||
}
|
@ -1,38 +1,52 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.glxp.udidl.admin.dao.sys.SysRoleMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.sys.SysRole">
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="name" jdbcType="VARCHAR" property="name" />
|
||||
<result column="code" jdbcType="VARCHAR" property="code" />
|
||||
<result column="status" jdbcType="CHAR" property="status" />
|
||||
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
||||
</resultMap>
|
||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
||||
delete from sys_role
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</delete>
|
||||
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.sys.SysRole">
|
||||
insert into sys_role (id, name, code,
|
||||
status, create_time)
|
||||
values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{code,jdbcType=VARCHAR},
|
||||
#{status,jdbcType=CHAR}, #{createTime,jdbcType=TIMESTAMP})
|
||||
</insert>
|
||||
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.sys.SysRole">
|
||||
update sys_role
|
||||
set name = #{name,jdbcType=VARCHAR},
|
||||
code = #{code,jdbcType=VARCHAR},
|
||||
status = #{status,jdbcType=CHAR},
|
||||
create_time = #{createTime,jdbcType=TIMESTAMP}
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</update>
|
||||
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
||||
select id, name, code, status, create_time
|
||||
from sys_role
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</select>
|
||||
<select id="selectAll" resultMap="BaseResultMap">
|
||||
select id, name, code, status, create_time
|
||||
from sys_role
|
||||
</select>
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.sys.SysRole">
|
||||
<id column="id" jdbcType="INTEGER" property="id"/>
|
||||
<result column="name" jdbcType="VARCHAR" property="name"/>
|
||||
<result column="code" jdbcType="VARCHAR" property="code"/>
|
||||
<result column="status" jdbcType="CHAR" property="status"/>
|
||||
<result column="sort" jdbcType="INTEGER" property="sort"/>
|
||||
<result column="create_time" jdbcType="TIMESTAMP" property="createTime"/>
|
||||
</resultMap>
|
||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
||||
delete
|
||||
from sys_role
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</delete>
|
||||
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.sys.SysRole">
|
||||
insert into sys_role (id, name, code,
|
||||
status,sort, create_time)
|
||||
values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{code,jdbcType=VARCHAR},
|
||||
#{status,jdbcType=CHAR},#{sort,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP})
|
||||
</insert>
|
||||
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.sys.SysRole">
|
||||
update sys_role
|
||||
set name = #{name,jdbcType=VARCHAR},
|
||||
code = #{code,jdbcType=VARCHAR},
|
||||
status = #{status,jdbcType=CHAR},
|
||||
sort = #{sort,jdbcType=INTEGER},
|
||||
create_time = #{createTime,jdbcType=TIMESTAMP}
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</update>
|
||||
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
||||
select *
|
||||
from sys_role
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</select>
|
||||
<select id="selectAll" resultMap="BaseResultMap">
|
||||
select *
|
||||
from sys_role
|
||||
</select>
|
||||
<select id="list" parameterType="com.glxp.udidl.admin.dto.sys.SysRoleParam" resultMap="BaseResultMap">
|
||||
select * from sys_role
|
||||
<where>
|
||||
<if test="status != null and status != '' ">
|
||||
and status = #{status}
|
||||
</if>
|
||||
<if test="name != null and name != '' ">
|
||||
and name like concat('%',#{name},'%')
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
</mapper>
|
Loading…
Reference in New Issue