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 = 250, IsNullable = false)]
        public string Content { get; set; }

        [Column(DbType = "datetime")]
        public DateTime CreateTime { get; set; }

        [Column(DbType = "bigint")]
        public long RobotId { get; set; }

        /// <summary>
        /// À´Ô´ÐźÅ
        /// </summary>
        [Column(MapType = typeof(int), DbType = "int")]
        public Enums.SingalType SourceSingal { get; set; }

    }

}