📄 collectionhistoryinfo.cs
字号:
namespace PowerEasy.Model.Collection
{
using PowerEasy.Model;
using System;
public class CollectionHistoryInfo : PowerEasy.Model.Nullable
{
private DateTime m_CollectionTime;
private int m_GeneralId;
private int m_HistoryId;
private int m_ItemId;
private int m_ModelId;
private string m_NewsUrl;
private int m_NodeId;
private bool m_Result;
private string m_Title;
public CollectionHistoryInfo()
{
}
public CollectionHistoryInfo(bool value)
{
base.IsNull = value;
}
public DateTime CollectionTime
{
get
{
return this.m_CollectionTime;
}
set
{
this.m_CollectionTime = value;
}
}
public int GeneralId
{
get
{
return this.m_GeneralId;
}
set
{
this.m_GeneralId = value;
}
}
public int HistoryId
{
get
{
return this.m_HistoryId;
}
set
{
this.m_HistoryId = value;
}
}
public int ItemId
{
get
{
return this.m_ItemId;
}
set
{
this.m_ItemId = value;
}
}
public int ModelId
{
get
{
return this.m_ModelId;
}
set
{
this.m_ModelId = value;
}
}
public string NewsUrl
{
get
{
return this.m_NewsUrl;
}
set
{
this.m_NewsUrl = value;
}
}
public int NodeId
{
get
{
return this.m_NodeId;
}
set
{
this.m_NodeId = value;
}
}
public bool Result
{
get
{
return this.m_Result;
}
set
{
this.m_Result = value;
}
}
public string Title
{
get
{
return this.m_Title;
}
set
{
this.m_Title = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -