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.
36 lines
978 B
36 lines
978 B
3 years ago
|
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 = "exchangeapikey", DisableSyncStructure = true)]
|
||
|
public partial class Exchangeapikey {
|
||
|
|
||
|
[JsonProperty, Column(DbType = "bigint", IsPrimary = true)]
|
||
|
public long Id { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "bigint")]
|
||
|
public long AccountId { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(StringLength = 100, IsNullable = false)]
|
||
|
public string APIKey { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "datetime")]
|
||
|
public DateTime CreateTime { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "bigint")]
|
||
|
public long? RobotId { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(StringLength = 100, IsNullable = false)]
|
||
|
public string SecretKey { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|