using Binance.TradeRobot.Model.Base; using FreeSql.DataAnnotations; using System; namespace Binance.TradeRobot.Model.Db { [Table(Name = "executionlog", DisableSyncStructure = true)] public partial class ExecutionLog { [Column(DbType = "bigint", IsPrimary = true)] public long Id { get; set; } [Column(StringLength = 300, IsNullable = false)] public string Content { get; set; } [Column(DbType = "datetime")] public DateTime CreateTime { get; set; } [Column(DbType = "bigint")] public long RobotId { get; set; } [Column(DbType = "bigint", IsNullable = true)] public long? OrderId { get; set; } /// /// À´Ô´ÐźŠ/// [Column(MapType = typeof(int), DbType = "int")] public Enums.SingalType SourceSingal { get; set; } } }