⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 is_tree.cs

📁 小区警务管理系统
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace IDAL
{
    /// <summary>
	/// 接口层IS_Tree 的摘要说明。
	/// </summary>
	public interface IS_Tree
	{
        #region  成员方法
        /// <summary>
        /// 得到最大ID
        /// </summary>
        int GetMaxId();
        /// <summary>
        /// 是否存在该记录
        /// </summary>
        bool Exists(string NodeID);
        /// <summary>
        /// 增加一条数据
        /// </summary>
        string Add(Model.S_Tree model);
        /// <summary>
        /// 更新一条数据
        /// </summary>
        void Update(Model.S_Tree model);
        /// <summary>
        /// 删除一条数据
        /// </summary>
        void Delete(string NodeID);
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        Model.S_Tree GetModel(string NodeID);
        /// <summary>
        /// 获得数据列表
        /// </summary>
        DataSet GetData(string strWhere);
        /// <summary>
        /// 根据分页获得数据列表
        /// </summary>
        DataSet GetData(int PageSize, int PageIndex, string strWhere);
        /// <summary>
        /// 获得数据列表
        ///</summary>
        //List<Model.> GetList(string strWhere);
        #endregion  成员方法
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -