using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.Core.Fee.Entity { /// /// 进项发票详情表 /// [SugarTable("invoice_in_detail", TableDescription = "进项发票详情表")] public class InInvoiceDetail : BaseModel { /// /// 主表Id /// public long PId { get; set; } /// /// 明细 id mxid /// public string DetailId { get; set; } /// /// 发票代码 fpdm /// public string InvoiceCode { get; set; } /// /// 发票号码 fphm /// public string InvoiceNumber { get; set; } /// /// 发票明细行序号 fpmxxh /// public string InvoiceDetailLineNumber { get; set; } /// /// 发票行性质 fphxz /// public string InvoiceLineNature { get; set; } /// /// 金额 je /// public string Amount { get; set; } /// /// 税率 sl /// public string TaxRate { get; set; } /// /// 税额 se /// public string TaxAmount { get; set; } /// /// 商品名称 spmc /// public string ProductName { get; set; } /// /// 规格型号 ggxh /// public string Specification { get; set; } /// /// 单位 dw /// public string Unit { get; set; } /// /// 商品数量 spsl /// public float Quantity { get; set; } /// /// 商品单价 spdj /// public float UnitPrice { get; set; } /// /// 商品编码 spbm /// public string ProductCode { get; set; } /// /// 版本 bb /// public string Version { get; set; } /// /// 优惠政策标识 yhzcbs /// public string PreferentialPolicyFlag { get; set; } /// /// 开票日期 kprq /// public string InvoicingDate { get; set; } /// /// 开票单位代码 kpdwdm /// public string InvoicingUnitCode { get; set; } /// /// 名称 mc /// public string Name { get; set; } /// /// 序号 xh /// public string SerialNumber { get; set; } /// /// 机构Id /// public long OrgId { get; set; } } }