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
784 B
33 lines
784 B
3 years ago
|
using Binance.TradeRobot.Model.Base;
|
||
|
using FreeSql.DataAnnotations;
|
||
|
using System;
|
||
|
|
||
|
namespace Binance.TradeRobot.Model.Db
|
||
|
{
|
||
|
|
||
|
[Table(Name = "symbolinfo", DisableSyncStructure = true)]
|
||
|
public partial class SymbolInfo
|
||
|
{
|
||
|
|
||
|
[Column(DbType = "bigint", IsPrimary = true)]
|
||
|
public long Id { get; set; }
|
||
|
|
||
|
[Column(DbType = "datetime")]
|
||
|
public DateTime? CreateTime { get; set; }
|
||
|
|
||
|
[Column(DbType = "int", MapType = typeof(int))]
|
||
|
public Enums.Exchange ExchangeId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 基础币卖出数量精度
|
||
|
/// </summary>
|
||
|
[Column(DbType = "int")]
|
||
|
public int SaleQuantityAccuracy { get; set; }
|
||
|
|
||
|
[Column(StringLength = 50)]
|
||
|
public string Symbol { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|