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 = "tMsWlTruck_Month", DisableSyncStructure = true)] public partial class TMsWlTruckMonth { [JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } [JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)] public string ACCDATE { get; set; } [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? BXF { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? GZCR { get; set; } = 0M; [JsonProperty, Column(DbType = "varchar(40)", IsNullable = false)] public string TRUCKNO { get; set; } [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? ZJF { get; set; } = 0M; } }