using Learun.Util; using System.Collections.Generic; namespace Learun.Application.OA.Email { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2017 /// 创建人:陈彬彬 /// 日 期:2018.06.04 /// 描 述:邮件管理 /// public interface EmailIBLL { #region 获取数据 /// /// 获取邮件 /// /// 邮件账户 /// 当前数量 /// List GetMail(MailAccount account, int receiveCount); /// /// 发送邮件 /// /// 邮箱账户 /// 邮箱类 /// void SendMail(MailAccount account, MailModel mailModel); /// /// 删除邮件 /// /// 邮箱账户 /// UID /// void DeleteMail(MailAccount account, string UID); #endregion #region 提交数据 #endregion } }