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

72 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;
namespace Mtxfw.Model
{
/// <summary>
/// user_info:实体类(属性说明自动提取数据库字段的描述信息)
/// </summary>
[Serializable]
public partial class user_Results_jl3
{
public user_Results_jl3()
{}
#region Model
private Int64 _id;
private Double _blmoney;//比例
private int _fs;//份数
private DateTime _addtime;//添加时间
private string _utype; // utype 0表示金豆转换记录,1表示记录
private int _gtype; //类型0总公司 1分公司 2分公司
/// <summary>
///
/// </summary>
public Int64 Id
{
set{ _id=value;}
get{return _id;}
}
/// <summary>
///
/// </summary>
public Double blmoney
{
set { _blmoney = value; }
get { return _blmoney; }
}
/// <summary>
///
/// </summary>
public int fs
{
set { _fs = value; }
get { return _fs; }
}
/// <summary>
/// utype
/// </summary>
public DateTime addtime
{
set { _addtime = value; }
get { return _addtime; }
}
/// <summary>
/// utype
/// </summary>
public string utype
{
set { _utype = value; }
get { return _utype; }
}
/// <summary>
///
/// </summary>
public int gtype
{
set { _gtype = value; }
get { return _gtype; }
}
#endregion Model
}
}