You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
983 B
22 lines
983 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Data;
|
|
|
|
namespace FangYar.IDAL
|
|
{
|
|
public interface CommomIDAL
|
|
{
|
|
int Count(string table, string strwhere);
|
|
string GetJsonList(string field, string table, string strwhere);
|
|
DataTable GetTableList(string field, string table, string strwhere);
|
|
DataTable GetTableList(string sql);
|
|
DataTable GetMonthCount(string field, string talbe, string year, string where);
|
|
string GetJsonMonthCount(string field, string table, string year, string where);
|
|
string QueryJsonList(int PageIndex, int PageSize,string table, string strwhere);
|
|
string QueryJsonList(int PageIndex, int PageSize,string table, string strwhere, string order);
|
|
DataTable QueryPage(int PageIndex, int PageSize,string table, string strwhere);
|
|
DataTable QueryPage(int PageIndex, int PageSize,string table, string strwhere, string order);
|
|
}
|
|
}
|
|
|