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 = "wms_stevedores", DisableSyncStructure = true)] public partial class WmsStevedores { [JsonProperty, Column(DbType = "varchar(100)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string CODE { get; set; } [JsonProperty] public bool DELFLAG { get; set; } = false; [JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)] public string Name { get; set; } [JsonProperty, Column(DbType = "varchar(512)")] public string OTHER { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string PHONE { get; set; } [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal PriceJian { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal PriceLiangTon { get; set; } = 0M; [JsonProperty, Column(InsertValueSql = "getdate()")] public DateTime? UpdateTime { get; set; } } }