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 = "code_fee_templatedetail", DisableSyncStructure = true)] public partial class CodeFeeTemplatedetail { [JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } = "getdate()"; [JsonProperty] public int? CLIENT { get; set; } = 0; [JsonProperty, Column(InsertValueSql = "getdate()")] public DateTime? CREATETIME { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string CREATEUSER { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string CURRENCY { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string CUSTOMERNAME { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? EXCHANGERATE { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string FEECODE { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string FEEFRT { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string FEENAME { get; set; } [JsonProperty] public int? FEETYPE { get; set; } [JsonProperty] public bool? ISADVANCEDPAY { get; set; } [JsonProperty] public bool? ISCTN { get; set; } [JsonProperty] public bool? ISINVOICE { get; set; } [JsonProperty] public DateTime? MODIFIEDTIME { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string MODIFIEDUSER { get; set; } [JsonProperty, Column(DbType = "varchar(200)")] public string REMARK { get; set; } [JsonProperty] public int? SORT { get; set; } [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? TAX { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? TAXRATE { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string TEMPLATEID { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string UNIT { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? UNITPRICE { get; set; } } }