157 lines
5.4 KiB
C#
157 lines
5.4 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.SignalR;
|
|
using DOAN.Admin.WebApi.Filters;
|
|
using DOAN.Model;
|
|
using DOAN.Model.System;
|
|
using DOAN.Model.System.Dto;
|
|
using DOAN.ServiceCore.Signalr;
|
|
|
|
namespace DOAN.Admin.WebApi.Controllers.System
|
|
{
|
|
/// <summary>
|
|
/// 系统通知
|
|
/// </summary>
|
|
[Verify]
|
|
[Route("system/notice")]
|
|
[ApiExplorerSettings(GroupName = "sys")]
|
|
public class SysNoticeController : BaseController
|
|
{
|
|
/// <summary>
|
|
/// 通知公告表接口
|
|
/// </summary>
|
|
private readonly ISysNoticeService _SysNoticeService;
|
|
private readonly IHubContext<MessageHub> _hubContext;
|
|
|
|
public SysNoticeController(ISysNoticeService SysNoticeService, IHubContext<MessageHub> hubContext)
|
|
{
|
|
_SysNoticeService = SysNoticeService;
|
|
_hubContext = hubContext;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 查询通知公告表列表(移动端用)
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpGet("queryNotice")]
|
|
public IActionResult QueryNotice([FromQuery] SysNoticeQueryDto parm)
|
|
{
|
|
var response = _SysNoticeService.GetSysNotices();
|
|
return SUCCESS(response);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 查询通知公告表列表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpGet("list")]
|
|
[ActionPermissionFilter(Permission = "system:notice:list")]
|
|
public IActionResult QuerySysNotice([FromQuery] SysNoticeQueryDto parm)
|
|
{
|
|
PagedInfo<SysNotice> response = _SysNoticeService.GetPageList(parm);
|
|
return SUCCESS(response);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 查询通知公告表详情
|
|
/// </summary>
|
|
/// <param name="NoticeId"></param>
|
|
/// <returns></returns>
|
|
[HttpGet("{NoticeId}")]
|
|
public IActionResult GetSysNotice(int NoticeId)
|
|
{
|
|
var response = _SysNoticeService.GetFirst(x => x.NoticeId == NoticeId);
|
|
|
|
return SUCCESS(response);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 添加通知公告表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[ActionPermissionFilter(Permission = "system:notice:add")]
|
|
[Log(Title = "发布通告", BusinessType = BusinessType.INSERT, IsSaveRequestData = false)]
|
|
public IActionResult AddSysNotice([FromBody] SysNoticeDto parm)
|
|
{
|
|
var modal = parm.Adapt<SysNotice>().ToCreate(HttpContext);
|
|
|
|
int result = _SysNoticeService.InsertReturnIdentity(modal);
|
|
|
|
return SUCCESS(result);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 更新通知公告表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPut]
|
|
[ActionPermissionFilter(Permission = "system:notice:update")]
|
|
[Log(Title = "修改公告", BusinessType = BusinessType.UPDATE, IsSaveRequestData = false)]
|
|
public IActionResult UpdateSysNotice([FromBody] SysNoticeDto parm)
|
|
{
|
|
var model = parm.Adapt<SysNotice>().ToUpdate(HttpContext);
|
|
|
|
var response = _SysNoticeService.Update(model);
|
|
|
|
return SUCCESS(response);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 发送通知公告表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPut("send/{NoticeId}")]
|
|
[ActionPermissionFilter(Permission = "system:notice:update")]
|
|
[Log(Title = "发送通知公告", BusinessType = BusinessType.OTHER)]
|
|
public IActionResult SendNotice(int NoticeId = 0)
|
|
{
|
|
if (NoticeId <= 0)
|
|
{
|
|
throw new CustomException("请求实体不能为空");
|
|
}
|
|
var response = _SysNoticeService.GetFirst(x => x.NoticeId == NoticeId);
|
|
if (response != null && response.Status == 0)
|
|
{
|
|
_hubContext.Clients.All.SendAsync(HubsConstant.ReceiveNotice, response.NoticeTitle, response.NoticeContent);
|
|
}
|
|
return SUCCESS(response);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 删除通知公告表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpDelete("{ids}")]
|
|
[ActionPermissionFilter(Permission = "system:notice:delete")]
|
|
[Log(Title = "通知公告", BusinessType = BusinessType.DELETE)]
|
|
public IActionResult DeleteSysNotice(string ids)
|
|
{
|
|
int[] idsArr = Tools.SpitIntArrary(ids);
|
|
if (idsArr.Length <= 0) { return ToResponse(ApiResult.Error($"删除失败Id 不能为空")); }
|
|
|
|
var response = _SysNoticeService.Delete(idsArr);
|
|
|
|
return SUCCESS(response);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 导出通知公告表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[Log(Title = "通知公告表", BusinessType = BusinessType.EXPORT, IsSaveResponseData = false)]
|
|
[HttpGet("export")]
|
|
[ActionPermissionFilter(Permission = "system:notice:export")]
|
|
public IActionResult Export([FromQuery] SysNoticeQueryDto parm)
|
|
{
|
|
parm.PageNum = 1;
|
|
parm.PageSize = 100000;
|
|
var list = _SysNoticeService.ExportList(parm).Result;
|
|
if (list == null || list.Count <= 0)
|
|
{
|
|
return ToResponse(ResultCode.FAIL, "没有要导出的数据");
|
|
}
|
|
var result = ExportExcelMini(list, "通知公告表", "通知公告表");
|
|
return ExportExcel(result.Item2, result.Item1);
|
|
}
|
|
}
|
|
} |