using System;
namespace Mtxfw.Model
{
///
/// user_bank:实体类(属性说明自动提取数据库字段的描述信息)
///
[Serializable]
public partial class user_Goods_lb
{
#region Model
private int _id;
private string _LBName;//名称
private string _LBBody;//内容
private int _LBLinkID;//排序ID
private int _utype;//类型0操作教程分类1商家分类2新手学堂分类
private int _gtype;
///
///
///
public int Id
{
set{ _id=value;}
get{return _id;}
}
///
///
///
public string LBName
{
set { _LBName = value; }
get { return _LBName; }
}
///
///
///
public string LBBody
{
set { _LBBody = value; }
get { return _LBBody; }
}
///
///
///
public int LBLinkID
{
set { _LBLinkID = value; }
get { return _LBLinkID; }
}
///
///
///
public int utype
{
set { _utype = value; }
get { return _utype; }
}
///
///
///
public int gtype
{
set { _gtype = value; }
get { return _gtype; }
}
#endregion Model
}
}