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 = "EIP_Goods", DisableSyncStructure = true)] public partial class EIPGoods { [JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string BSNO { get; set; } [JsonProperty] public int? CONTRACTNUM { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string CORPID { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string GOODSNAME { get; set; } [JsonProperty, Column(DbType = "char(1)")] public string PACKTYPE { get; set; } [JsonProperty] public int? PKGS { get; set; } [JsonProperty, Column(DbType = "varchar(500)")] public string REMARK { get; set; } [JsonProperty] public int? REMNANT { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string SPECS { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string TRAYNO { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string TRGID { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string UNIT { get; set; } [JsonProperty, Column(DbType = "decimal(18,2)")] public decimal? WEIGHT { get; set; } } }