21 lines
667 B
C#
21 lines
667 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WX.CRM.IBLL.Csvr
|
|
{
|
|
public interface ICSVR_MSGOPENACCOUNT_Q
|
|
{
|
|
/// <summary>
|
|
/// 获取全部没阅读信息
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<WX.CRM.Model.Entity.CSVR_MSGOPENACCOUNT> GetNoIsViewOpenAccount();
|
|
/// <summary>
|
|
/// 获取最新没有阅读的n条数据
|
|
/// </summary>
|
|
/// <param name="userId">员工ID</param>
|
|
/// <param name="top">顶部多少条数据</param>
|
|
/// <returns></returns>
|
|
List<WX.CRM.Model.Entity.CSVR_MSGOPENACCOUNT> GetListNewOpenAccount(decimal userId, int top = 10);
|
|
}
|
|
}
|