1234567891011121314151617181920 |
- using StarTech_Model;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Startech.IDAL
- {
- public interface ISMSHasReceived : IDataProvider<SMSHasReceived>
- {
- /// <summary>
- /// 查询语句
- /// </summary>
- /// <returns></returns>
- IEnumerable<SMSHasReceived> FindAll(string tablename, string strWhere, string orderby, int index, int size);
- int GetCount(string TableName, string UserName);
- }
- }
|