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

91 lines
1.9 KiB
C#
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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_xjcjq
{
public User_xjcjq()
{}
#region Model
private int _Id;
private int _cjId;//系统抽奖设置ID
private int _kqjcs;//可抽奖次数
private int _yqjcs;//已抽奖次数
private DateTime _addtime;//时间
private int _MemberId;//会员ID
private int _Seef;//0表示未审核1表示已审核2表示已删除
private int _utype;//类型 0是现金抽奖 1是积分抽奖
/// <summary>
///
/// </summary>
public int Id
{
set { _Id = value; }
get { return _Id; }
}
/// <summary>
///
/// </summary>
public int cjId
{
set { _cjId = value; }
get { return _cjId; }
}
/// <summary>
///
/// </summary>
public int kqjcs
{
set { _kqjcs = value; }
get { return _kqjcs; }
}
/// <summary>
///
/// </summary>
public int yqjcs
{
set { _yqjcs = value; }
get { return _yqjcs; }
}
/// <summary>
///
/// </summary>
public DateTime addtime
{
set { _addtime = value; }
get { return _addtime; }
}
/// <summary>
///
/// </summary>
public int MemberId
{
set { _MemberId = value; }
get { return _MemberId; }
}
/// <summary>
/// Seef
/// </summary>
public int Seef
{
set { _Seef = value; }
get { return _Seef; }
}
/// <summary>
///
/// </summary>
public int utype
{
set { _utype = value; }
get { return _utype; }
}
#endregion Model
}
}