You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
511 B
C#
17 lines
511 B
C#
using HcUtility.Comm;
|
|
|
|
namespace HcUtility.Core
|
|
{
|
|
/// <summary>
|
|
/// 功能: ModelObject保存的处理接口
|
|
|
|
/// 创建: 吴伟 2009-05-07
|
|
///
|
|
/// </summary>
|
|
interface IModelObjectDB
|
|
{
|
|
DBResult Save(System.Collections.Generic.List<ModelObjectBase> dataList, string dbname = "");
|
|
DBResult Save(ModelObjectBase modData, string dbname = "");
|
|
//List<ModelObjectBase> GetDataList(int start, int limit, string sort, string condition);
|
|
}
|
|
}
|