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.
47 lines
1.6 KiB
47 lines
1.6 KiB
//using System.Collections.Generic;
|
|
//using System.Threading.Tasks;
|
|
//using Microsoft.AspNetCore.Mvc;
|
|
//using Volo.Abp.Application.Dtos;
|
|
//using Volo.Abp.AspNetCore.Mvc;
|
|
//using Win_in.Sfs.Message.Application.Contracts;
|
|
|
|
//namespace Win_in.Sfs.Wms.Pda.Controllers.Messages;
|
|
|
|
//[ApiController]
|
|
//[Route($"{PdaHostConst.ROUT_ROUTE}message/subscribe")]
|
|
//public class MessageSubscribeController : AbpController
|
|
//{
|
|
// private readonly IMessageTypeService _messageTypeService;
|
|
// private readonly IMessageType__SubscribePeopleService _messageType__SubscribePeopleService;
|
|
|
|
// public MessageSubscribeController(IMessageTypeService messageTypeService
|
|
// , IMessageType__SubscribePeopleService messageType__SubscribePeopleService)
|
|
// {
|
|
// _messageTypeService = messageTypeService;
|
|
// _messageType__SubscribePeopleService= messageType__SubscribePeopleService;
|
|
// }
|
|
|
|
// /// <summary>
|
|
// /// 获取订阅类型
|
|
// /// </summary>
|
|
// /// <param name="input"></param>
|
|
// /// <returns></returns>
|
|
// [HttpGet("")]
|
|
// public virtual async Task<PagedResultDto<MessageTypeDto>> GetSubscribeAsync(MessageTypeRequestDto input)
|
|
// {
|
|
// var list = await _messageTypeService.GetListAsync(input);
|
|
|
|
// return list;
|
|
// }
|
|
|
|
// /// <summary>
|
|
// /// 订阅消息
|
|
// /// </summary>
|
|
// /// <param name="dtos"></param>
|
|
// /// <returns></returns>
|
|
// [HttpPost("")]
|
|
// public virtual async Task GetSubscribeAsync(List<MessageType__SubscribePeopleCreateDto> dtos)
|
|
// {
|
|
// //await _messageType__SubscribePeopleService.CreateAsync(dtos);
|
|
// }
|
|
//}
|
|
|