using System.Collections.Generic;
namespace WX.CRM.IBLL.Csvr
{
public interface ICSVR_MSGOPENACCOUNT_Q
{
///
/// 获取全部没阅读信息
///
///
List GetNoIsViewOpenAccount();
///
/// 获取最新没有阅读的n条数据
///
/// 员工ID
/// 顶部多少条数据
///
List GetListNewOpenAccount(decimal userId, int top = 10);
}
}