using FreeSql.DataAnnotations; using System; namespace Binance.TradeRobot.Model.Db { [Table(DisableSyncStructure = true)] public partial class ExecutionLog { [ Column(IsPrimary = true)] public long Id { get; set; } [Column(StringLength = 250, IsNullable = false)] public string Content { get; set; } [Column(InsertValueSql = "getdate()")] public DateTime CreateTime { get; set; } public long RobotId { get; set; } } }