|
|
@ -90,4 +90,77 @@ namespace SettleAccount.Domain.BQ |
|
|
|
{ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 发票同步Qad
|
|
|
|
/// </summary>
|
|
|
|
public class InvoiceSyncQad : AuditedAggregateRoot<Guid> |
|
|
|
{ |
|
|
|
/// <summary>
|
|
|
|
/// 状态
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "状态")] |
|
|
|
public int TaskState { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 状态
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "状态")] |
|
|
|
public Guid TaskID { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 状态
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "状态")] |
|
|
|
[MaxLength(64)] |
|
|
|
public string TaskName { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 状态
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "状态")] |
|
|
|
[MaxLength(64)] |
|
|
|
public string Failedinfo { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 状态
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "状态")] |
|
|
|
[MaxLength(64)] |
|
|
|
public string Domain { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 状态
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "状态")] |
|
|
|
[MaxLength(64)] |
|
|
|
public string Site { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 状态
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "状态")] |
|
|
|
[MaxLength(64)] |
|
|
|
public string InvoiceNumber { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 状态
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "状态")] |
|
|
|
[MaxLength(64)] |
|
|
|
public string SaslnvoiceNumber { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 状态
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "状态")] |
|
|
|
[MaxLength(64)] |
|
|
|
public string Customer { get; set; } |
|
|
|
/// <summary>
|
|
|
|
/// 状态
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "状态")] |
|
|
|
[MaxLength(64)] |
|
|
|
public string Voucher { get; set; } |
|
|
|
} |
|
|
|
|
|
|
|
public enum EnumTaskState |
|
|
|
{ |
|
|
|
None, |
|
|
|
Reading, |
|
|
|
Success, |
|
|
|
Fail |
|
|
|
} |
|
|
|
} |
|
|
|