using System;
|
|
|
|
namespace Basic.Model
|
|
{
|
|
[Serializable]
|
|
public partial class followproduct
|
|
{
|
|
#region 此代码由工具生成
|
|
|
|
private int _id;
|
|
private int _product_id;
|
|
private DateTime _add_time;
|
|
private string _openid;
|
|
|
|
|
|
/// <summary>
|
|
/// 自增ID
|
|
/// </summary>
|
|
public int id
|
|
{
|
|
set { _id = value; }
|
|
get { return _id; }
|
|
}
|
|
/// <summary>
|
|
/// 产品id
|
|
/// </summary>
|
|
public int product_id
|
|
{
|
|
set { _product_id = value; }
|
|
get { return _product_id; }
|
|
}
|
|
/// <summary>
|
|
/// 关注的时间
|
|
/// </summary>
|
|
public DateTime add_time
|
|
{
|
|
set { _add_time = value; }
|
|
get { return _add_time; }
|
|
}
|
|
/// <summary>
|
|
/// Openid
|
|
/// </summary>
|
|
public string openid
|
|
{
|
|
set { _openid = value; }
|
|
get { return _openid; }
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|