using System.Collections.Generic;
using GxPress.Request.App.WorkMeeting;
namespace GxPress.Service.Interface.Meeting
{
public interface IMeetingService : IService
{
///
/// 返回相邻的
///
///
///
Dictionary> GetDictionary(List nums);
///
/// 获取会议的订阅时间
///
///
///
Dictionary, List> GetMeetingTimeDictionary(IEnumerable orderList);
}
}