using FreeSql.DatabaseModel;using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading.Tasks; using Newtonsoft.Json; using FreeSql.DataAnnotations; namespace Binance.TradeRobot.Model.Db { [JsonObject(MemberSerialization.OptIn), Table(Name = "exchangeapikey", DisableSyncStructure = true)] public partial class Exchangeapikey { [JsonProperty, Column(DbType = "bigint", IsPrimary = true)] public long Id { get; set; } [JsonProperty, Column(DbType = "bigint")] public long AccountId { get; set; } [JsonProperty, Column(StringLength = 100, IsNullable = false)] public string APIKey { get; set; } [JsonProperty, Column(DbType = "datetime")] public DateTime CreateTime { get; set; } [JsonProperty, Column(DbType = "bigint")] public long? RobotId { get; set; } [JsonProperty, Column(StringLength = 100, IsNullable = false)] public string SecretKey { get; set; } } }