71 lines
1.4 KiB
C#
71 lines
1.4 KiB
C#
using System;
|
|
namespace Mtxfw.Model
|
|
{
|
|
/// <summary>
|
|
/// user_bank:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[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;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int Id
|
|
{
|
|
set{ _id=value;}
|
|
get{return _id;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string LBName
|
|
{
|
|
set { _LBName = value; }
|
|
get { return _LBName; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string LBBody
|
|
{
|
|
set { _LBBody = value; }
|
|
get { return _LBBody; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int LBLinkID
|
|
{
|
|
set { _LBLinkID = value; }
|
|
get { return _LBLinkID; }
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int utype
|
|
{
|
|
set { _utype = value; }
|
|
get { return _utype; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int gtype
|
|
{
|
|
set { _gtype = value; }
|
|
get { return _gtype; }
|
|
}
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|