|
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Base
|
|
{
|
|
public interface IBAS_NOTICE : IRepository<BAS_NOTICE>
|
|
{
|
|
List<BAS_NOTICE> GetList(ref Pager page, string title, string stime, string etime);
|
|
}
|
|
}
|