📄 consultation.cs
字号:
using System;
namespace HouseBE
{
/// <summary>
/// Consultation实体 日程信息。
/// </summary>
public class Consultation
{
private int _ConsultationID;
private string _ConsultationDate;
private string _ObjectMessage;
private int _Operator;
private string _Remark;
public int ConsultationID
{
set
{
this._ConsultationID=value;
}
get
{
return this._ConsultationID;
}
}
public string ConsultationDate
{
set
{
this._ConsultationDate=value;
}
get
{
return this._ConsultationDate;
}
}
public string ObjectMessage
{
set
{
this._ObjectMessage=value;
}
get
{
return this._ObjectMessage;
}
}
public int Operator
{
set
{
this._Operator=value;
}
get
{
return this._Operator;
}
}
public string Remark
{
set
{
this._Remark=value;
}
get
{
return this._Remark;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -