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 = "ch_fee_verification", DisableSyncStructure = true)] public partial class ChFeeVerification { [JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } = "newid"; [JsonProperty, Column(DbType = "varchar(20)")] public string BILLNO { get; set; } [JsonProperty] public DateTime? DELETETIME { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string DELETEUSER { get; set; } [JsonProperty] public bool? ISDELETE { get; set; } = false; [JsonProperty, Column(DbType = "varchar(36)")] public string RECVAMOUNTID { get; set; } [JsonProperty] public DateTime? SETTLETIME { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string SETTLEUSER { get; set; } } }