200 lines
7.2 KiB
C#
200 lines
7.2 KiB
C#
using Infrastructure;
|
|
using Infrastructure.Attribute;
|
|
using Infrastructure.Constant;
|
|
using Infrastructure.Enums;
|
|
using Infrastructure.Model;
|
|
using Mapster;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.SignalR;
|
|
using SqlSugar;
|
|
using ARW.Admin.WebApi.Extensions;
|
|
using ARW.Admin.WebApi.Filters;
|
|
using ARW.Admin.WebApi.Hubs;
|
|
using ARW.Common;
|
|
using ARW.Model.System;
|
|
using ARW.Model.System.Dto;
|
|
using ARW.Service.System.IService;
|
|
|
|
namespace ARW.Admin.WebApi.Controllers.System
|
|
{
|
|
/// <summary>
|
|
/// 系统通知
|
|
/// </summary>
|
|
[Verify]
|
|
[Route("system/notice")]
|
|
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 predicate = Expressionable.Create<SysNotice>();
|
|
|
|
predicate = predicate.And(m => m.Status == "0");
|
|
var response = _SysNoticeService.GetPages(predicate.ToExpression(), parm);
|
|
return SUCCESS(response);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 查询通知公告表列表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpGet("list")]
|
|
[ActionPermissionFilter(Permission = "system:notice:list")]
|
|
public IActionResult QuerySysNotice([FromQuery] SysNoticeQueryDto parm)
|
|
{
|
|
var predicate = Expressionable.Create<SysNotice>();
|
|
|
|
predicate = predicate.AndIF(!string.IsNullOrEmpty(parm.NoticeTitle), m => m.NoticeTitle.Contains(parm.NoticeTitle));
|
|
predicate = predicate.AndIF(!string.IsNullOrEmpty(parm.NoticeType), m => m.NoticeType == parm.NoticeType);
|
|
predicate = predicate.AndIF(!string.IsNullOrEmpty(parm.CreateBy), m => m.Create_by.Contains(parm.CreateBy) || m.Update_by.Contains(parm.CreateBy));
|
|
predicate = predicate.AndIF(!string.IsNullOrEmpty(parm.Status), m => m.Status == parm.Status);
|
|
var response = _SysNoticeService.GetPages(predicate.ToExpression(), parm);
|
|
return SUCCESS(response);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 查询通知公告表详情
|
|
/// </summary>
|
|
/// <param name="NoticeId"></param>
|
|
/// <returns></returns>
|
|
[HttpGet("{NoticeId}")]
|
|
[ActionPermissionFilter(Permission = "system:notice:query")]
|
|
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)]
|
|
public IActionResult AddSysNotice([FromBody] SysNoticeDto parm)
|
|
{
|
|
if (parm == null)
|
|
{
|
|
throw new CustomException("请求参数错误");
|
|
}
|
|
//从 Dto 映射到 实体
|
|
var modal = parm.Adapt<SysNotice>().ToCreate(HttpContext);
|
|
modal.Create_by = HttpContext.GetName();
|
|
modal.Create_time = DateTime.Now;
|
|
|
|
int result = _SysNoticeService.Insert(modal, it => new
|
|
{
|
|
it.NoticeTitle,
|
|
it.NoticeType,
|
|
it.NoticeContent,
|
|
it.Status,
|
|
it.Remark,
|
|
it.Create_by,
|
|
it.Create_time
|
|
});
|
|
|
|
return SUCCESS(result);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 更新通知公告表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpPut]
|
|
[ActionPermissionFilter(Permission = "system:notice:update")]
|
|
[Log(Title = "通知公告表", BusinessType = BusinessType.UPDATE)]
|
|
public IActionResult UpdateSysNotice([FromBody] SysNoticeDto parm)
|
|
{
|
|
if (parm == null)
|
|
{
|
|
throw new CustomException("请求实体不能为空");
|
|
}
|
|
//从 Dto 映射到 实体
|
|
var model = parm.Adapt<SysNotice>().ToUpdate(HttpContext);
|
|
|
|
var response = _SysNoticeService.Update(w => w.NoticeId == model.NoticeId, it => new SysNotice()
|
|
{
|
|
//Update 字段映射
|
|
NoticeTitle = model.NoticeTitle,
|
|
NoticeType = model.NoticeType,
|
|
NoticeContent = model.NoticeContent,
|
|
Status = model.Status,
|
|
Remark = model.Remark,
|
|
Update_by = HttpContext.GetName(),
|
|
Update_time = DateTime.Now
|
|
});
|
|
|
|
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(BusinessType = BusinessType.EXPORT, IsSaveResponseData = false, Title = "通知公告表")]
|
|
[HttpGet("export")]
|
|
[ActionPermissionFilter(Permission = "system:notice:export")]
|
|
public IActionResult Export()
|
|
{
|
|
var list = _SysNoticeService.GetAll();
|
|
|
|
string sFileName = ExportExcel(list, "SysNotice", "通知公告表");
|
|
return SUCCESS(new { path = "/export/" + sFileName, fileName = sFileName });
|
|
}
|
|
}
|
|
} |