📄 labelmanageinfo.cs
字号:
namespace PowerEasy.Model.TemplateProc
{
using PowerEasy.Model;
using System;
using System.Text;
public class LabelManageInfo : PowerEasy.Model.Nullable
{
private StringBuilder m_Define;
private string m_Ico;
private int m_Id;
private string m_Intro;
private int m_Mid;
private string m_Name;
private int m_Nid;
private StringBuilder m_Template;
private string m_TemplateType;
private string m_Type;
private DateTime m_UpDateTime;
public LabelManageInfo()
{
this.m_TemplateType = string.Empty;
this.m_Name = string.Empty;
this.m_Type = string.Empty;
this.m_Define = new StringBuilder();
this.m_Template = new StringBuilder();
this.m_Ico = string.Empty;
this.m_Intro = string.Empty;
}
public LabelManageInfo(bool value)
{
this.m_TemplateType = string.Empty;
this.m_Name = string.Empty;
this.m_Type = string.Empty;
this.m_Define = new StringBuilder();
this.m_Template = new StringBuilder();
this.m_Ico = string.Empty;
this.m_Intro = string.Empty;
base.IsNull = value;
}
public LabelManageInfo(string name)
{
this.m_TemplateType = string.Empty;
this.m_Name = string.Empty;
this.m_Type = string.Empty;
this.m_Define = new StringBuilder();
this.m_Template = new StringBuilder();
this.m_Ico = string.Empty;
this.m_Intro = string.Empty;
this.m_Name = name;
}
public LabelManageInfo(int id, int mid, int nid, string templatetype, string name, string type, StringBuilder define, StringBuilder template, DateTime updatetime, string ico, string intro)
{
this.m_TemplateType = string.Empty;
this.m_Name = string.Empty;
this.m_Type = string.Empty;
this.m_Define = new StringBuilder();
this.m_Template = new StringBuilder();
this.m_Ico = string.Empty;
this.m_Intro = string.Empty;
this.m_Id = id;
this.m_Mid = mid;
this.m_Nid = nid;
this.m_TemplateType = templatetype;
this.m_Name = name;
this.m_Type = type;
this.m_Define = define;
this.m_Template = template;
this.m_UpDateTime = updatetime;
this.m_Ico = ico;
this.m_Intro = intro;
}
public StringBuilder Define
{
get
{
return this.m_Define;
}
set
{
this.m_Define = value;
}
}
public string Ico
{
get
{
return this.m_Ico;
}
set
{
this.m_Ico = value;
}
}
public int Id
{
get
{
return this.m_Id;
}
set
{
this.m_Id = value;
}
}
public string Intro
{
get
{
return this.m_Intro;
}
set
{
this.m_Intro = value;
}
}
public int Mid
{
get
{
return this.m_Mid;
}
set
{
this.m_Mid = value;
}
}
public string Name
{
get
{
return this.m_Name;
}
set
{
this.m_Name = value;
}
}
public int Nid
{
get
{
return this.m_Nid;
}
set
{
this.m_Nid = value;
}
}
public StringBuilder Template
{
get
{
return this.m_Template;
}
set
{
this.m_Template = value;
}
}
public string TemplateType
{
get
{
return this.m_TemplateType;
}
set
{
this.m_TemplateType = value;
}
}
public string Type
{
get
{
return this.m_Type;
}
set
{
this.m_Type = value;
}
}
public DateTime UpDateTime
{
get
{
return this.m_UpDateTime;
}
set
{
this.m_UpDateTime = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -