币安量化交易
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
785 B

using Binance.TradeRobot.Model.Base;
using FreeSql.DataAnnotations;
using System;
namespace Binance.TradeRobot.Model.Db
{
3 years ago
[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; }
}
}