123456789101112131415161718192021 |
- using Models;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Interface
- {
- public interface LotteryNumInterface:BaseInterface
- {
- T GetLastItem<T>(SCCLottery lottery);
-
- List<T> GetLastItems<T>(SCCLottery lottery, int days, bool kjhOrsjh = false);
- KaijiangDetailsEntity GetKJItem(string type, string id);
- List<T> GetTopNumList<T>(SCCLottery lottery, string order, int num = 1, Boolean isdesc = true, bool kjhOrsjh = false);
- List<T> GetList<T>(string tablename, List<EExpression> expression, string order, bool isDesc = true, bool kjhOrsjh = false);
- List<T> ToList<T>();
- }
- }
|