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 = "Import_SaleZD", DisableSyncStructure = true)] public partial class ImportSaleZD { [JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } [JsonProperty] public DateTime? CREATETIME { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string CREATEUSER { get; set; } [JsonProperty] public byte? ISUSE { get; set; } = 0; [JsonProperty, Column(DbType = "varchar(50)")] public string OP { get; set; } [JsonProperty] public DateTime? OPDATE { get; set; } [JsonProperty, Column(DbType = "varchar(300)")] public string REMARK { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string SALESNO { get; set; } } }