You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.9 KiB
C#

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 InvoiceRecordSub {
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
[JsonProperty, Column(DbType = "varchar(1)")]
public string FavouredPolicyFlag { get; set; }
[JsonProperty, Column(StringLength = 50)]
public string FavouredPolicyName { get; set; }
[JsonProperty, Column(DbType = "varchar(19)")]
public string GoodsCode { get; set; }
[JsonProperty, Column(StringLength = 90)]
public string GoodsName { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
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 = 200)]
public string Remark { get; set; }
[JsonProperty, Column(DbType = "varchar(40)")]
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(DbType = "varchar(20)")]
public string Unit { get; set; }
[JsonProperty, Column(DbType = "varchar(1)")]
public string WithTaxFlag { get; set; }
[JsonProperty, Column(DbType = "varchar(1)")]
public string ZeroRateFlag { get; set; }
}
}