using FreeSql.DataAnnotations; using System; namespace Binance.TradeRobot.Model.Db { [Table(DisableSyncStructure = true)] public partial class ExchangeAPIKey { [Column(IsPrimary = true)] public long Id { get; set; } /// /// 交易所账号Id /// public long AccountId { get; set; } [Column(StringLength = 100, IsNullable = false)] public string APIKey { get; set; } [Column(InsertValueSql = "getdate()")] public DateTime CreateTime { get; set; } public long? RobotId { get; set; } [Column(StringLength = 100, IsNullable = false)] public string SecretKey { get; set; } } }