币安量化交易
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.

33 lines
877 B

3 years ago
using Binance.TradeRobot.Model.Base;
using FreeSql.DataAnnotations;
using System;
namespace Binance.TradeRobot.Model.Db
{
3 years ago
[Table(Name = "exchangeaccount", DisableSyncStructure = true)]
3 years ago
public partial class ExchangeAccount
{
3 years ago
[Column(DbType = "bigint", IsPrimary = true)]
3 years ago
public long Id { get; set; }
3 years ago
[Column(DbType = "int", MapType = typeof(int))]
public Enums.BusinessType BusinessType { get; set; }
3 years ago
3 years ago
[Column(DbType = "datetime")]
3 years ago
public DateTime CreateTime { get; set; }
3 years ago
[Column(DbType = "int", MapType = typeof(int))]
public Enums.Exchange ExchangeId { get; set; }
3 years ago
[Column(StringLength = 50, IsNullable = false)]
public string LoginName { get; set; }
3 years ago
[Column(DbType = "int", MapType = typeof(int))]
3 years ago
public Enums.TradePolicy TradePolicy { get; set; }
}
}