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.
50 lines
1.2 KiB
50 lines
1.2 KiB
3 years ago
|
using Binance.TradeRobot.Model.Base;
|
||
|
using FreeSql.DataAnnotations;
|
||
|
using System;
|
||
|
|
||
|
namespace Binance.TradeRobot.Model.Db
|
||
|
{
|
||
|
|
||
|
[Table(DisableSyncStructure = true)]
|
||
|
public partial class UserAccountFundChangeRecord
|
||
|
{
|
||
|
|
||
|
[Column(IsPrimary = true)]
|
||
|
public long Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 变更金额
|
||
|
/// </summary>
|
||
|
[Column(DbType = "decimal(18,8)")]
|
||
|
public decimal ChangeAmount { get; set; }
|
||
|
|
||
|
[Column(InsertValueSql = "getdate()")]
|
||
|
public DateTime? CreateTime { get; set; }
|
||
|
|
||
|
[Column(MapType = typeof(int))]
|
||
|
public Enums.FundDirection Direction { get; set; }
|
||
|
|
||
|
[Column(MapType = typeof(int))]
|
||
|
public Enums.CapitalChangeType OperationType { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 操作者Id
|
||
|
/// </summary>
|
||
|
public long OperationUserId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 用户Id
|
||
|
/// </summary>
|
||
|
public long UserId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 对端用户Id
|
||
|
/// </summary>
|
||
|
public long? ToUserId { get; set; }
|
||
3 years ago
|
|
||
|
[Column(StringLength = 100)]
|
||
|
public string Remark { get; set; }
|
||
3 years ago
|
}
|
||
|
|
||
|
}
|