ISMSHasReceived.cs 527 B

1234567891011121314151617181920
  1. using StarTech_Model;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Startech.IDAL
  8. {
  9. public interface ISMSHasReceived : IDataProvider<SMSHasReceived>
  10. {
  11. /// <summary>
  12. /// 查询语句
  13. /// </summary>
  14. /// <returns></returns>
  15. IEnumerable<SMSHasReceived> FindAll(string tablename, string strWhere, string orderby, int index, int size);
  16. int GetCount(string TableName, string UserName);
  17. }
  18. }