namespace Tiobon.Core.Controllers { /// /// 角色管理 /// [Route("api/[controller]/[action]")] [ApiController] [Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_System)] public class RoleController : BaseApiController { readonly IRoleServices _roleServices; readonly IUser _user; public RoleController(IRoleServices roleServices, IUser user) { _roleServices = roleServices; _user = user; } /// /// 获取全部角色 /// /// /// /// // GET: api/User [HttpGet] public async Task>> Get(int page = 1, string key = "") { if (string.IsNullOrEmpty(key) || string.IsNullOrWhiteSpace(key)) { key = ""; } int intPageSize = 50; var data = await _roleServices.QueryPage(a => a.IsDeleted != true && (a.Name != null && a.Name.Contains(key)), page, intPageSize, " Id desc "); //return new ServiceResult>() //{ // msg = "获取成功", // success = data.dataCount >= 0, // response = data //}; return Success(data, "获取成功"); } // GET: api/User/5 [HttpGet("{id}")] public string Get(string id) { return "value"; } /// /// 添加角色 /// /// /// // POST: api/User [HttpPost] public async Task> Post([FromBody] Role role) { role.CreateId = _user.ID; role.CreateBy = _user.Name; var id = (await _roleServices.Add(role)); return id > 0 ? Success(id.ObjToString(), "添加成功") : Failed("添加失败"); } /// /// 更新角色 /// /// /// // PUT: api/User/5 [HttpPut] public async Task> Put([FromBody] Role role) { if (role == null || role.Id <= 0) return Failed("缺少参数"); return await _roleServices.Update(role) ? Success(role?.Id.ObjToString(),"更新成功") : Failed("更新失败"); //var data = new ServiceResult(); //if (role != null && role.Id > 0) //{ // data.success = await _roleServices.Update(role); // if (data.success) // { // data.msg = "更新成功"; // data.response = role?.Id.ObjToString(); // } //} //return data; } /// /// 删除角色 /// /// /// // DELETE: api/ApiWithActions/5 [HttpDelete] public async Task> Delete(long id) { var data = new ServiceResult(); //if (id > 0) //{ // var userDetail = await _roleServices.QueryById(id); // userDetail.IsDeleted = true; // data.success = await _roleServices.Update(userDetail); // if (data.success) // { // data.msg = "删除成功"; // data.response = userDetail?.Id.ObjToString(); // } //} //return data; if (id <= 0) return Failed(); var userDetail = await _roleServices.QueryById(id); if (userDetail == null) return Success(null,"角色不存在"); userDetail.IsDeleted = true; return await _roleServices.Update(userDetail) ? Success(userDetail?.Id.ObjToString(), "删除成功") : Failed(); } } }