Files
g.hnyhua.cn/Mtxfw.Model/user_guanzhu.cs
2026-02-07 15:48:27 +08:00

73 lines
1.5 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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
}
}