📄 iwbcontent.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 + -