币安量化交易
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
962 B

3 years ago
using FreeSql.DataAnnotations;
using System;
namespace Binance.TradeRobot.Model.Db
{
3 years ago
[Table(Name = "user", DisableSyncStructure = true)]
3 years ago
public partial class User {
3 years ago
[Column(DbType = "bigint", IsPrimary = true)]
3 years ago
public long Id { get; set; }
/// <summary>
/// 投资本金
/// </summary>
3 years ago
[Column(DbType = "decimal(18,8)")]
3 years ago
public decimal CostAmount { get; set; } = 0.0M;
3 years ago
[Column(DbType = "datetime")]
3 years ago
public DateTime? CreateTime { get; set; }
/// <summary>
/// 收益
/// </summary>
[Column(DbType = "decimal(18,8)")]
public decimal Profit { get; set; } = 0.0M;
[Column(StringLength = 20)]
public string Pwd { get; set; }
3 years ago
[Column(DbType = "datetime")]
3 years ago
public DateTime? UpdateTime { get; set; }
[Column(StringLength = 20)]
public string UserName { get; set; }
/// <summary>
/// 提前金额
/// </summary>
[Column(DbType = "decimal(18,8)")]
public decimal WithdrawAmount { get; set; } = 0.0M;
}
}