📄 otherinfo.cs
字号:
using System;
namespace CallCenter.Modules {
/// <summary>
///
/// </summary>
public class OtherInfo {
public OtherInfo() {
//
// TODO: 在此处添加构造函数逻辑
//
}
private int _gmark;
private string _gshow;
private int _sptid;
private string _sptname;
private int _wbtid; //咨询类型
private string _wbtype; //类型名称
private int _wbsid; //工单状态编号
private string _wbstate; //工单状态
private int _dmid; //字典编号
private string _enname; //字典英文名称
private string _chname; //字典中文名称
private int _id;
private string _content;
public int gmark {
get {
return _gmark;
}
set {
if (_gmark == value)
return;
_gmark = value;
}
}
public string gshow {
get {
return _gshow==null?"":_gshow;
}
set {
if (_gshow == value)
return;
_gshow = value;
}
}
public int sptid {
get {
return _sptid;
}
set {
if (_sptid == value)
return;
_sptid = value;
}
}
public string sptname {
get {
return _sptname==null?"":_sptname;
}
set {
if (_sptname == value)
return;
_sptname = value;
}
}
public int wbtid {
get {
return _wbtid;
}
set {
if (_wbtid == value)
return;
_wbtid = value;
}
}
public string wbtype {
get {
return _wbtype==null?"":_wbtype;
}
set {
if (_wbtype == value)
return;
_wbtype = value;
}
}
public int wbsid {
get {
return _wbsid;
}
set {
if (_wbsid == value)
return;
_wbsid = value;
}
}
public string wbstate {
get {
return _wbstate==null?"":_wbstate;
}
set {
if (_wbstate == value)
return;
_wbstate = value;
}
}
public int dmid {
get {
return _dmid;
}
set {
if (_dmid == value)
return;
_dmid = value;
}
}
public string enname {
get {
return _enname==null?"":_enname;
}
set {
if (_enname == value)
return;
_enname = value;
}
}
public string chname {
get {
return _chname==null?"":_chname;
}
set {
if (_chname == value)
return;
_chname = value;
}
}
public int id {
get {
return _id;
}
set {
if (_id == value)
return;
_id = value;
}
}
public string content {
get {
return _content==null?"":_content;
}
set {
if (_content == value)
return;
_content = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -