📄 questionallotinfo.cs
字号:
namespace PowerEasy.Model.Crm
{
using PowerEasy.Model;
using System;
public class QuestionAllotInfo : PowerEasy.Model.Nullable
{
private int m_AdminId;
private string m_AdminName;
private int m_TypeId;
private string m_TypeName;
public QuestionAllotInfo()
{
}
public QuestionAllotInfo(bool value)
{
base.IsNull = value;
}
public int AdminId
{
get
{
return this.m_AdminId;
}
set
{
this.m_AdminId = value;
}
}
public string AdminName
{
get
{
return this.m_AdminName;
}
set
{
this.m_AdminName = value;
}
}
public int TypeId
{
get
{
return this.m_TypeId;
}
set
{
this.m_TypeId = value;
}
}
public string TypeName
{
get
{
return this.m_TypeName;
}
set
{
this.m_TypeName = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -