You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
2.4 KiB
C#
93 lines
2.4 KiB
C#
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 djy.Model {
|
|
|
|
[JsonObject(MemberSerialization.OptIn), Table(Name = "msk_subscribe_last_data", DisableSyncStructure = true)]
|
|
public partial class MskSubscribeLastData {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? BoxNum { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string BoxType { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? CalculationDate { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string ChangeStatus { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? Days { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? EndTime { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(1000)")]
|
|
public string ErrorInfo { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(1000)")]
|
|
public string FCJson { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(128)")]
|
|
public string FromCity { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISBook { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(128)")]
|
|
public string LastCity { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? LastTime { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string OFCurrency { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "decimal(18,0)")]
|
|
public decimal? OFTotal { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string OnOffline { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string PriceId { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? QueryTime { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? StartTime { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string TempId { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(128)")]
|
|
public string ToCity { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "decimal(18,0)")]
|
|
public decimal? Total { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string TotalCurrency { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(128)")]
|
|
public string VesselName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(128)")]
|
|
public string VoyageNumber { get; set; }
|
|
|
|
}
|
|
|
|
}
|