You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- //
-
-
-
-
-
-
-
-
- namespace SafeCampus.Web.Core;
-
- /// <summary>
- /// 站内信控制器
- /// </summary>
- [ApiDescriptionSettings(Tag = "站内信")]
- [Route("sys/dev/[controller]")]
- public class MessageController : BaseController
- {
- private readonly IMessageService _messageService;
-
- public MessageController(IMessageService messageService)
- {
- _messageService = messageService;
- }
-
- /// <summary>
- /// 分页查询
- /// </summary>
- /// <param name="input"></param>
- /// <returns></returns>
- [HttpGet("page")]
- public async Task<dynamic> Page([FromQuery] MessagePageInput input)
- {
- return await _messageService.Page(input);
- }
-
- /// <summary>
- /// 发送站内信
- /// </summary>
- /// <param name="input"></param>
- /// <returns></returns>
- [HttpPost("send")]
- [DisplayName("发送站内信")]
- public async Task Send([FromBody] MessageSendInput input)
- {
- await _messageService.Send(input);
- }
-
- /// <summary>
- /// 消息详情
- /// </summary>
- /// <param name="input"></param>
- /// <returns></returns>
- [HttpGet("detail")]
- public async Task<dynamic> Detail([FromQuery] BaseIdInput input)
- {
- return await _messageService.Detail(input);
- }
-
- /// <summary>
- /// 删除站内信
- /// </summary>
- /// <param name="input"></param>
- /// <returns></returns>
- [HttpPost("delete")]
- [DisplayName("删除站内信")]
- public async Task Delete([FromBody] BaseIdListInput input)
- {
- await _messageService.Delete(input);
- }
- }
|