using System;
namespace Mtxfw.Model
{
///
/// Ads:实体类(属性说明自动提取数据库字段的描述信息)
///
[Serializable]
public partial class Ads
{
public Ads()
{ }
#region Model
private int _id;
private string _adsname;
private string _adsurl;
private string _adspic;
private int? _adssort = 0;
private string _utype;
///
///
///
public int ID
{
set { _id = value; }
get { return _id; }
}
///
///
///
public string AdsName
{
set { _adsname = value; }
get { return _adsname; }
}
///
///
///
public string AdsUrl
{
set { _adsurl = value; }
get { return _adsurl; }
}
///
///
///
public string AdsPic
{
set { _adspic = value; }
get { return _adspic; }
}
///
///
///
public int? AdsSort
{
set { _adssort = value; }
get { return _adssort; }
}
///
///
///
public string utype
{
set { _utype = value; }
get { return _utype; }
}
#endregion Model
}
}