using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AirWheel.Cycling.Entity.ResponseMod
{
public class ReDiscoveryClass
{
#region Model
private int _bdcid;
private string _classname;
private string _imageurl;
private string _imageurlstr;
private string _introduce;
private int? _themetype;
private DateTime? _adddate;
private string _addname;
private int? _softnum;
private int? _rowstate;
///
///
///
public int BDCID
{
set { _bdcid = value; }
get { return _bdcid; }
}
///
/// 分类名称
///
public string ClassName
{
set { _classname = value; }
get { return _classname; }
}
///
/// 图片地址
///
public string ImageUrl
{
set { _imageurl = value; }
get { return _imageurl; }
}
///
///
///
public string ImageUrlStr
{
set { _imageurlstr = value; }
get { return _imageurlstr; }
}
///
/// 介绍
///
public string Introduce
{
set { _introduce = value; }
get { return _introduce; }
}
///
/// 主题类型
///
public int? themeType
{
set { _themetype = value; }
get { return _themetype; }
}
///
/// 添加时间
///
public DateTime? AddDate
{
set { _adddate = value; }
get { return _adddate; }
}
///
/// 添加人
///
public string AddName
{
set { _addname = value; }
get { return _addname; }
}
///
///
///
public int? SoftNum
{
set { _softnum = value; }
get { return _softnum; }
}
///
///
///
public int? RowState
{
set { _rowstate = value; }
get { return _rowstate; }
}
#endregion Model
}
}