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(DisableSyncStructure = true)] public partial class InvoiceRecordSubs { [JsonProperty, Column(StringLength = 128, IsPrimary = true, IsNullable = false)] public string GID { get; set; } [JsonProperty, Column(StringLength = -2)] public string FavouredPolicyFlag { get; set; } [JsonProperty, Column(StringLength = -2)] public string FavouredPolicyName { get; set; } [JsonProperty, Column(StringLength = -2)] public string GoodsCode { get; set; } [JsonProperty, Column(StringLength = -2)] public string GoodsName { get; set; } [JsonProperty, Column(StringLength = -2)] public string InvId { get; set; } [JsonProperty, Column(DbType = "decimal(18,2)")] public decimal? Num { get; set; } [JsonProperty, Column(DbType = "decimal(18,2)")] public decimal? Price { get; set; } [JsonProperty, Column(StringLength = -2)] public string Remark { get; set; } [JsonProperty, Column(StringLength = -2)] public string SpecType { get; set; } [JsonProperty, Column(DbType = "decimal(18,2)")] public decimal? Tax { get; set; } [JsonProperty, Column(DbType = "decimal(18,2)")] public decimal? TaxExcludedAmount { get; set; } [JsonProperty, Column(DbType = "decimal(18,2)")] public decimal? TaxIncludedAmount { get; set; } [JsonProperty, Column(DbType = "decimal(18,2)")] public decimal? TaxRate { get; set; } [JsonProperty, Column(StringLength = -2)] public string Unit { get; set; } [JsonProperty, Column(StringLength = -2)] public string WithTaxFlag { get; set; } [JsonProperty, Column(StringLength = -2)] public string ZeroRateFlag { get; set; } } }