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 = "PC_LTJY_Distance", DisableSyncStructure = true)] public partial class PCLTJYDistance { [JsonProperty, Column(Name = "id", IsPrimary = true, IsIdentity = true)] public int Id { get; set; } [JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)] public string CUSTOMERNAME { get; set; } = ""; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? DISTANCE { get; set; } = 0M; [JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)] public string NAME { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? PRICE { get; set; } = 0M; [JsonProperty, Column(DbType = "varchar(50)")] public string PRICETYPE { get; set; } = "吨公里"; } }