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

70 lines
1.4 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_bank:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[Serializable]
public partial class user_favorite
{
#region Model
private int _id;
private int _ProductID;//商品ID
private int _MemberId;//会员ID
private DateTime _addtime;//添加时间
private int _ttype;//类型0商品1文章2点赞直播间3关注会员4点赞视频
private int _gtype; //类型0总公司 1分公司 2分公司
/// <summary>
///
/// </summary>
public int Id
{
set{ _id=value;}
get{return _id;}
}
/// <summary>
///
/// </summary>
public int ProductID
{
set { _ProductID = value; }
get { return _ProductID; }
}
/// <summary>
///
/// </summary>
public int MemberId
{
set { _MemberId = value; }
get { return _MemberId; }
}
/// <summary>
///
/// </summary>
public DateTime addtime
{
set { _addtime = value; }
get { return _addtime; }
}
/// <summary>
///
/// </summary>
public int ttype
{
set { _ttype = value; }
get { return _ttype; }
}
/// <summary>
///
/// </summary>
public int gtype
{
set { _gtype = value; }
get { return _gtype; }
}
#endregion Model
}
}