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

📄 iwbcontent.cs

📁 汽车销售公司ERP进销存系统 汽车销售公司ERP进销存系统
💻 CS
字号:
using CallCenter.Modules;
using System.Collections;
using System.Data;

namespace CallCenter.IDAL
{
	/// <summary>
	/// 工单处理内容操作类
	/// </summary>
	public interface IWBContent
	{
		int addWBContent(WBContentInfo info);
		void updateWBContent(WBContentInfo info);
		void delWBContentById(int id);
		void delWBContentByWBId(int wbid);
		void delWBContentByWBIds(string wbid);
		ArrayList getWBContentByWBId(int wbid);
		DataSet getWBContentByWBId_DataSet(int wbid,string tableName);
	}
}

⌨️ 快捷键说明

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