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 = "TMSRPT_MONTH_TRUCKDETAIL", DisableSyncStructure = true)] public partial class TMSRPTMONTHTRUCKDETAIL { [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? AMOUNT { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? BXF { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? CARDAYS { get; set; } = 0M; [JsonProperty, Column(DbType = "varchar(50)")] public string COMPANYID { get; set; } [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? FUELAMOUNT { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? FUELAMOUNTRATE { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? FUELPRICE { get; set; } = 0M; [JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)] public string GID { get; set; } [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? GJJ { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? GZJZ { get; set; } = 0M; [JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)] public string LINKGID { get; set; } [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? LQF { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? MILPERDAY { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? NODRVDAYS { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? NOGOODDAYS { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? OTHERAMOUNT { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? OTHERPAY { get; set; } = 0M; [JsonProperty, Column(DbType = "varchar(200)")] public string OTHERPAYREMARK { get; set; } [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? OVERLOADMIL { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? RATEDFUEL { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? RATEDMIL { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? REALFUEL { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? REMAINFUEL { get; set; } = 0M; [JsonProperty, Column(DbType = "varchar(600)")] public string REMARK { get; set; } [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? REPAIRAMOUNT { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? REPAIRDAYS { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? SBF { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? TAX { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? TEU { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? TONS { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? TRUCKCOST { get; set; } = 0M; [JsonProperty, Column(DbType = "varchar(20)")] public string TRUCKNO { get; set; } [JsonProperty, Column(Name = "TRUCKPROFIT_M", DbType = "numeric(18,2)")] public decimal? TRUCKPROFITM { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? TYREAMOUNT { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? USABLEDAYS { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? USABLERATE { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? WORKDAYS { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? WORKRATE { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? ZJF { get; set; } = 0M; } }