📄 sysoperatorinfo.cs
字号:
using System;
namespace CallCenter.Modules
{
/// <summary>
///
/// </summary>
public class SysoperatorInfo
{
public SysoperatorInfo()
{
//
// TODO: 在此处添加构造函数逻辑
//
}
private string _lname;
private string _oname;
private string _opassword;
private string _olevel;
private string _omenuid;
private string _odescription;
private int _oid;
private string _otelnumnber;
public string lname
{
get
{
return _lname==null?"":_lname;
}
set
{
if (_lname == value)
return;
_lname = value;
}
}
public string oname
{
get
{
return _oname==null?"":_oname;
}
set
{
if (_oname == value)
return;
_oname = value;
}
}
public string opassword
{
get
{
return _opassword==null?"":_opassword;
}
set
{
if (_opassword == value)
return;
_opassword = value;
}
}
public string olevel
{
get
{
return _olevel==null?"":_olevel;
}
set
{
if (_olevel == value)
return;
_olevel = value;
}
}
public string omenuid
{
get
{
return _omenuid==null?"":_omenuid;
}
set
{
if (_omenuid == value)
return;
_omenuid = value;
}
}
public string odescription
{
get
{
return _odescription==null?"":_odescription;
}
set
{
if (_odescription == value)
return;
_odescription = value;
}
}
public int oid
{
get
{
return _oid;
}
set
{
if (_oid == value)
return;
_oid = value;
}
}
public string otelnumnber
{
get
{
return _otelnumnber==null?"":_otelnumnber;
}
set
{
if (_otelnumnber == value)
return;
_otelnumnber = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -