📄 wbcontentinfo.cs
字号:
using System;
namespace CallCenter.Modules
{
/// <summary>
/// 工单处理内容信息
/// </summary>
public class WBContentInfo
{
public WBContentInfo()
{
//
// TODO: 在此处添加构造函数逻辑
//
}
private int _id;
private int _wbid;
private string _opid;
private string _opname;
private string _opdate;
private string _opcontent;
public int id{
set{_id = value;}
get{return _id;}
}
public int wbid
{
set{_wbid = value;}
get{return _wbid;}
}
public string opid
{
set{_opid = value;}
get{return _opid==null?"":_opid;}
}
public string opname
{
set{_opname = value;}
get{return _opname==null?"":_opname;}
}
public string opdate
{
set{_opdate = value;}
get{return _opdate==null?"":_opdate;}
}
public string opcontent
{
set{_opcontent = value;}
get{return _opcontent==null?"":_opcontent;}
}
public override string ToString()
{
// TODO: 添加 WBContentInfo.ToString 实现
return "id = "+this.id+" ; wbid = "+this.wbid+" ; opid = "+this.opid+" ; opname = "+this.opname+
" ; opdate = "+this.opdate+" ; opcontent = "+this.opcontent;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -