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_Bulk_railway_detail", DisableSyncStructure = true)] public partial class OpBulkRailwayDetail { [JsonProperty, Column(DbType = "varchar(100)", IsPrimary = true, IsNullable = false)] public string BSNO { get; set; } [JsonProperty, Column(DbType = "numeric(27,0)", IsPrimary = true)] public decimal SerialNo { get; set; } = 0M; [JsonProperty] public bool ACCSTATUS { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string ARRIVALSTATION { get; set; } [JsonProperty, Column(DbType = "varchar(19)")] public string ExpDate { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string InvNo { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? KGS { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? PKGS { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string Remark { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string StationNo { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string TrainCust { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string TrainNo { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string TrainType { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? TRANSOT { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? TRANSTOTAL { get; set; } = 0M; } }