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.
|
|
|
using FreeSql.DataAnnotations;
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Binance.TradeRobot.Model.Db
|
|
|
|
{
|
|
|
|
|
|
|
|
[Table(DisableSyncStructure = true, Name = "exchangeapikey")]
|
|
|
|
public partial class ExchangeAPIKey
|
|
|
|
{
|
|
|
|
|
|
|
|
[Column(IsPrimary = true, DbType = "bigint")]
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 交易所账号Id
|
|
|
|
/// </summary>
|
|
|
|
[Column(DbType = "bigint")]
|
|
|
|
public long AccountId { get; set; }
|
|
|
|
|
|
|
|
[Column(StringLength = 100, IsNullable = false)]
|
|
|
|
public string APIKey { get; set; }
|
|
|
|
|
|
|
|
[Column(DbType = "datetime")]
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
|
|
|
|
[Column(DbType = "bigint")]
|
|
|
|
public long? RobotId { get; set; }
|
|
|
|
|
|
|
|
[Column(StringLength = 100, IsNullable = false)]
|
|
|
|
public string SecretKey { get; set; }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|