📄 voteinfo.cs
字号:
//======================================================
//== (c)2008 aspxcms inc by NeTCMS v1.0 ==
//== Forum:bbs.aspxcms.com ==
//== Website:www.aspxcms.com ==
//======================================================
using System;
using System.Collections.Generic;
using System.Text;
namespace NetCMS.Model
{
/// <summary>
/// 投票主题
/// </summary>
public class VoteTopicInfo
{
private int _TID;
private int _VID;
private string _Title;
private byte _Type;
private byte _DisMode;
private DateTime _StartDate;
private DateTime _EndDate;
private byte _ItemMode;
private string _SiteID;
private bool _AllowFillIn;
private byte _SeriesMode;
public int TID
{
set { _TID = value; }
get { return _TID; }
}
public int VID
{
set { _VID = value; }
get { return _VID; }
}
public string Title
{
set { _Title = value; }
get { return _Title; }
}
public byte Type
{
set { _Type = value; }
get { return _Type; }
}
public byte DisMode
{
set { _DisMode = value; }
get { return _DisMode; }
}
public DateTime StartDate
{
set { _StartDate = value; }
get { return _StartDate; }
}
public DateTime EndDate
{
set { _EndDate = value; }
get { return _EndDate; }
}
public byte ItemMode
{
set { _ItemMode = value; }
get { return _ItemMode; }
}
public string SiteID
{
set { _SiteID = value; }
get { return _SiteID; }
}
public bool AllowFillIn
{
set { _AllowFillIn = value; }
get { return _AllowFillIn; }
}
public byte SeriesMode
{
set { _SeriesMode = value; }
get { return _SeriesMode; }
}
}
public class VoteItemInfo
{
private int _TID;
private int _IID;
private string _ItemName;
private byte _ItemMode;
private string _PicSrc;
private string _DisColor;
private int _VoteCount;
private string _ItemDetail;
private string _SiteID;
public int TID
{
set { _TID = value; }
get { return _TID; }
}
public int IID
{
set { _IID = value; }
get { return _IID; }
}
public string ItemName
{
set { _ItemName = value; }
get { return _ItemName; }
}
public byte ItemMode
{
set { _ItemMode = value; }
get { return _ItemMode; }
}
public string PicSrc
{
set { _PicSrc = value; }
get { return _PicSrc; }
}
public string DisColor
{
set { _DisColor = value; }
get { return _DisColor; }
}
public int VoteCount
{
set { _VoteCount = value; }
get { return _VoteCount; }
}
public string ItemDetail
{
set { _ItemDetail = value; }
get { return _ItemDetail; }
}
public string SiteID
{
set { _SiteID = value; }
get { return _SiteID; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -