?? wbcontentinfo.cs
字號(hào):
using System;
namespace CallCenter.Modules
{
/// <summary>
/// 工單處理內(nèi)容信息
/// </summary>
public class WBContentInfo
{
public WBContentInfo()
{
//
// TODO: 在此處添加構(gòu)造函數(shù)邏輯
//
}
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 實(shí)現(xiàn)
return "id = "+this.id+" ; wbid = "+this.wbid+" ; opid = "+this.opid+" ; opname = "+this.opname+
" ; opdate = "+this.opdate+" ; opcontent = "+this.opcontent;
}
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -