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

75 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;
using SqlSugar;
namespace Mtxfw.Model
{
/// <summary>
/// user_info:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[Serializable]
[SugarTable("qiandao")]
public partial class qiandao
{
public qiandao()
{}
#region Model
private Int64 _Q_Id;
private int _Q_MemberId;//用户ID
private string _Q_Intro;//签到内容
private int _Q_Num;//签到数量
private DateTime _Q_SJ;//签到时间
private int _gtype; //类型1=用户签到
/// <summary>
///
/// </summary>
public Int64 Q_Id
{
set { _Q_Id = value; }
get { return _Q_Id; }
}
/// <summary>
///
/// </summary>
public int Q_MemberId
{
set { _Q_MemberId = value; }
get { return _Q_MemberId; }
}
/// <summary>
///
/// </summary>
public string Q_Intro
{
set { _Q_Intro = value; }
get { return _Q_Intro; }
}
/// <summary>
///
/// </summary>
public int Q_Num
{
set { _Q_Num = value; }
get { return _Q_Num; }
}
/// <summary>
///
/// </summary>
public DateTime Q_SJ
{
set { _Q_SJ = value; }
get { return _Q_SJ; }
}
/// <summary>
///
/// </summary>
public int gtype
{
set { _gtype = value; }
get { return _gtype; }
}
#endregion Model
}
}