📄 replyinfo.cs
字号:
namespace PowerEasy.Model.Crm
{
using PowerEasy.Model;
using System;
[Serializable]
public class ReplyInfo : PowerEasy.Model.Nullable
{
private int m_Id;
private int m_QuestionId;
private string m_ReplyContent;
private string m_ReplyCreator;
private DateTime m_ReplyTime;
public ReplyInfo()
{
}
public ReplyInfo(bool value)
{
base.IsNull = value;
}
public ReplyInfo(int id, int questionId, string replyCreator, DateTime replyTime, string replyContent)
{
this.Id = id;
this.QuestionId = questionId;
this.ReplyCreator = replyCreator;
this.ReplyTime = replyTime;
this.ReplyContent = replyContent;
}
public int Id
{
get
{
return this.m_Id;
}
set
{
this.m_Id = value;
}
}
public int QuestionId
{
get
{
return this.m_QuestionId;
}
set
{
this.m_QuestionId = value;
}
}
public string ReplyContent
{
get
{
return this.m_ReplyContent;
}
set
{
this.m_ReplyContent = value;
}
}
public string ReplyCreator
{
get
{
return this.m_ReplyCreator;
}
set
{
this.m_ReplyCreator = value;
}
}
public DateTime ReplyTime
{
get
{
return this.m_ReplyTime;
}
set
{
this.m_ReplyTime = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -