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.
29 lines
763 B
29 lines
763 B
using System;
|
|
using System.Data;
|
|
using System.Collections.Generic;
|
|
|
|
namespace FangYar.IDAL.FIRE
|
|
{
|
|
public interface IFIRERESOURCE
|
|
{
|
|
#region 成员方法
|
|
|
|
/// <summary>
|
|
/// 得到一个对象实体
|
|
/// </summary>
|
|
FangYar.Model.FIRE.FIRE_RESOURCES GetModel();
|
|
FangYar.Model.FIRE.FIRE_RESOURCES DataRowToModel(DataRow row);
|
|
/// <summary>
|
|
/// 获得数据列表
|
|
/// </summary>
|
|
DataSet GetList(string strWhere);
|
|
/// <summary>
|
|
/// 根据分页获得数据列表
|
|
/// </summary>
|
|
//DataSet GetList(int PageSize,int PageIndex,string strWhere);
|
|
#endregion 成员方法
|
|
#region MethodEx
|
|
|
|
#endregion MethodEx
|
|
}
|
|
}
|
|
|