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.
32 lines
857 B
32 lines
857 B
using FreeSql.DatabaseModel;using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
using FreeSql.DataAnnotations;
|
|
|
|
namespace Binance.TradeRobot.Model.Db {
|
|
|
|
[JsonObject(MemberSerialization.OptIn), Table(Name = "exchangeaccount", DisableSyncStructure = true)]
|
|
public partial class Exchangeaccount {
|
|
|
|
[JsonProperty, Column(DbType = "bigint", IsPrimary = true)]
|
|
public long Id { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "int")]
|
|
public int? BusinessType { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "datetime")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
[JsonProperty, Column(StringLength = 50)]
|
|
public string LoginName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "int")]
|
|
public int? TradePolicy { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|