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

35 lines
831 B

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