代码修改后的版本,全部提交
This commit is contained in:
71
Mtxfw.Model/user_Results_jl3.cs
Normal file
71
Mtxfw.Model/user_Results_jl3.cs
Normal file
@@ -0,0 +1,71 @@
|
||||
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
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user