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

84 lines
1.8 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_openids:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[Serializable]
public partial class User_openids
{
public User_openids()
{}
#region Model
private Int64 _Id;
private int _MemberId;//会员ID
private int _SJId;//绑定商家ID
private string _openid;//openid
private DateTime _addtime;//绑定时间
private int _ttype; //openid类型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 SJId
{
set { _SJId = value; }
get { return _SJId; }
}
/// <summary>
///
/// </summary>
public string openid
{
set { _openid = value; }
get { return _openid; }
}
/// <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
}
}