📄 collectioniteminfo.cs
字号:
namespace PowerEasy.Model.Collection
{
using PowerEasy.Model;
using System;
public class CollectionItemInfo : PowerEasy.Model.Nullable
{
private string m_CodeType;
private bool m_Detection;
private string m_Intro;
private int m_ItemId;
private string m_ItemName;
private int m_MaxNum;
private int m_ModelId;
private DateTime m_NewsCollecDate;
private int m_NodeId;
private int m_OrderType;
private string m_Url;
private string m_UrlName;
public CollectionItemInfo()
{
}
public CollectionItemInfo(bool value)
{
base.IsNull = value;
}
public string CodeType
{
get
{
return this.m_CodeType;
}
set
{
this.m_CodeType = value;
}
}
public bool Detection
{
get
{
return this.m_Detection;
}
set
{
this.m_Detection = value;
}
}
public string Intro
{
get
{
return this.m_Intro;
}
set
{
this.m_Intro = value;
}
}
public int ItemId
{
get
{
return this.m_ItemId;
}
set
{
this.m_ItemId = value;
}
}
public string ItemName
{
get
{
return this.m_ItemName;
}
set
{
this.m_ItemName = value;
}
}
public int MaxNum
{
get
{
return this.m_MaxNum;
}
set
{
this.m_MaxNum = value;
}
}
public int ModelId
{
get
{
return this.m_ModelId;
}
set
{
this.m_ModelId = value;
}
}
public DateTime NewsCollecDate
{
get
{
return this.m_NewsCollecDate;
}
set
{
this.m_NewsCollecDate = value;
}
}
public int NodeId
{
get
{
return this.m_NodeId;
}
set
{
this.m_NodeId = value;
}
}
public int OrderType
{
get
{
return this.m_OrderType;
}
set
{
this.m_OrderType = value;
}
}
public string Url
{
get
{
return this.m_Url;
}
set
{
this.m_Url = value;
}
}
public string UrlName
{
get
{
return this.m_UrlName;
}
set
{
this.m_UrlName = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -