From 8b2284786ad5e020aa4994ebeb67816e7faa73f6 Mon Sep 17 00:00:00 2001 From: mahao Date: Thu, 12 Oct 2023 09:49:16 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BA=A2=E5=86=B2=E5=8F=91=E7=A5=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Entities/BQ/INVOICE_GRP.cs | 73 +++++++++++++++++++ 1 file changed, 73 insertions(+) diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_GRP.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_GRP.cs index 2a74fac8..1e9f2fbf 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_GRP.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Domain/Entities/BQ/INVOICE_GRP.cs @@ -90,4 +90,77 @@ namespace SettleAccount.Domain.BQ { } } + + /// + /// 发票同步Qad + /// + public class InvoiceSyncQad : AuditedAggregateRoot + { + /// + /// 状态 + /// + [Display(Name = "状态")] + public int TaskState { get; set; } + /// + /// 状态 + /// + [Display(Name = "状态")] + public Guid TaskID { get; set; } + /// + /// 状态 + /// + [Display(Name = "状态")] + [MaxLength(64)] + public string TaskName { get; set; } + /// + /// 状态 + /// + [Display(Name = "状态")] + [MaxLength(64)] + public string Failedinfo { get; set; } + /// + /// 状态 + /// + [Display(Name = "状态")] + [MaxLength(64)] + public string Domain { get; set; } + /// + /// 状态 + /// + [Display(Name = "状态")] + [MaxLength(64)] + public string Site { get; set; } + /// + /// 状态 + /// + [Display(Name = "状态")] + [MaxLength(64)] + public string InvoiceNumber { get; set; } + /// + /// 状态 + /// + [Display(Name = "状态")] + [MaxLength(64)] + public string SaslnvoiceNumber { get; set; } + /// + /// 状态 + /// + [Display(Name = "状态")] + [MaxLength(64)] + public string Customer { get; set; } + /// + /// 状态 + /// + [Display(Name = "状态")] + [MaxLength(64)] + public string Voucher { get; set; } + } + + public enum EnumTaskState + { + None, + Reading, + Success, + Fail + } }