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

124 lines
2.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>
/// city:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[Serializable]
public partial class user_zzjf_log
{
#region Model
private Int64 _id;
private Decimal _num;//增值数量
private Decimal _zznum;//增值资金
private Decimal _zzjg;//增值价格
private Decimal _zzjf;//增值积分
private Decimal _xzjf;//新增积分
private DateTime _addtime;//添加时间
private int _seef;//0表示未审核1表示已审核-1表示无需审核
private DateTime _seeftime;//审核时间
private int _IFDelete;//假删除 0否 1是
private DateTime _IFDeleteTime;//假删除时间
private int _gtype;
/// <summary>
///
/// </summary>
public Int64 id
{
set { _id = value; }
get { return _id; }
}
/// <summary>
///
/// </summary>
public Decimal num
{
set { _num = value; }
get { return _num; }
}
/// <summary>
///
/// </summary>
public Decimal zznum
{
set { _zznum = value; }
get { return _zznum; }
}
/// <summary>
///
/// </summary>
public Decimal zzjg
{
set { _zzjg = value; }
get { return _zzjg; }
}
/// <summary>
///
/// </summary>
public Decimal zzjf
{
set { _zzjf = value; }
get { return _zzjf; }
}
/// <summary>
///
/// </summary>
public Decimal xzjf
{
set { _xzjf = value; }
get { return _xzjf; }
}
/// <summary>
///
/// </summary>
public DateTime addtime
{
set { _addtime = value; }
get { return _addtime; }
}
/// <summary>
/// Seef
/// </summary>
public int seef
{
set { _seef = value; }
get { return _seef; }
}
/// <summary>
/// seeftime
/// </summary>
public DateTime seeftime
{
set { _seeftime = value; }
get { return _seeftime; }
}
/// <summary>
/// IFDelete
/// </summary>
public int IFDelete
{
set { _IFDelete = value; }
get { return _IFDelete; }
}
/// <summary>
/// IFDeleteTime
/// </summary>
public DateTime IFDeleteTime
{
set { _IFDeleteTime = value; }
get { return _IFDeleteTime; }
}
/// <summary>
///
/// </summary>
public int gtype
{
set { _gtype = value; }
get { return _gtype; }
}
#endregion Model
}
}