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 + } }