ComplianceServer/oldcode/IBLL/Base/IBAS_NOTICE.cs

12 lines
280 B
C#

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);
}
}