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.

69 lines
1.9 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 = "op_railway_tracking", DisableSyncStructure = true)]
public partial class OpRailwayTracking {
[JsonProperty, Column(Name = "TK_ID", DbType = "varchar(100)", IsPrimary = true, IsNullable = false)]
public string TKID { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string ACTIVITY { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string BSNO { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string CNTRNO { get; set; }
[JsonProperty, Column(DbType = "numeric(18,3)")]
public decimal? DISTANCE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,3)")]
public decimal? DISTANCEDEST { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string EFCNTR { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string FRTRAINNO { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string INPUTBY { get; set; }
[JsonProperty, Column(DbType = "smalldatetime")]
public DateTime INPUTDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string LOCATION { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string LOCATIONID { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string REMARK { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string SEALNO { get; set; }
[JsonProperty]
public int? SORTNO { get; set; }
[JsonProperty, Column(DbType = "smalldatetime")]
public DateTime TRACKDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string TRAINNO { get; set; }
}
}