73 lines
1.5 KiB
C#
73 lines
1.5 KiB
C#
using System;
|
||
namespace Mtxfw.Model
|
||
{
|
||
/// <summary>
|
||
/// user_info:实体类(属性说明自动提取数据库字段的描述信息)
|
||
/// </summary>
|
||
[Serializable]
|
||
public partial class user_guanzhu
|
||
{
|
||
public user_guanzhu()
|
||
{}
|
||
#region Model
|
||
private Int64 _id;
|
||
private int _MemberId;//关注或点赞会员
|
||
private int _MemberId2;//被关注会员或点赞视频
|
||
private DateTime _addtime;//关注或点赞时间
|
||
private int _utype; // utype 0表示关注记录,1表示点赞记录
|
||
private int _gtype; //类型,0总公司 1分公司 2分公司
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public Int64 Id
|
||
{
|
||
set{ _id=value;}
|
||
get{return _id;}
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public int MemberId
|
||
{
|
||
set { _MemberId = value; }
|
||
get { return _MemberId; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public int MemberId2
|
||
{
|
||
set { _MemberId2 = value; }
|
||
get { return _MemberId2; }
|
||
}
|
||
|
||
/// <summary>
|
||
///addtime
|
||
/// </summary>
|
||
public DateTime addtime
|
||
{
|
||
set { _addtime = value; }
|
||
get { return _addtime; }
|
||
}
|
||
/// <summary>
|
||
/// utype
|
||
/// </summary>
|
||
public int utype
|
||
{
|
||
set { _utype = value; }
|
||
get { return _utype; }
|
||
}
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public int gtype
|
||
{
|
||
set { _gtype = value; }
|
||
get { return _gtype; }
|
||
}
|
||
#endregion Model
|
||
|
||
}
|
||
}
|
||
|