12 changed files with 235 additions and 337 deletions
@ -1,54 +1,41 @@ |
|||||
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic; |
using System; |
||||
using System.Collections.Generic; |
using Volo.Abp.Domain.Entities.Auditing; |
||||
|
|
||||
namespace Dy_Exchange.Z_Business; |
namespace Dy_Exchange.Z_Business; |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 日志
|
/// 日志
|
||||
/// </summary>
|
/// </summary>
|
||||
public class ArchivedIncomingToWm |
public class ArchivedIncomingToWm |
||||
: AuditedAggregateRoot<Guid>{ |
: AuditedAggregateRoot<Guid> |
||||
public Guid Id { get; set; } |
{ |
||||
|
public long Number { get; set; } |
||||
|
|
||||
public long Number { get; set; } |
public Guid? TenantId { get; set; } |
||||
|
|
||||
public string? ExtraProperties { get; set; } |
public string? Remark { get; set; } |
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
public string? DataType { get; set; } |
||||
|
|
||||
public DateTime CreationTime { get; set; } |
public int DataAction { get; set; } |
||||
|
|
||||
public Guid? CreatorId { get; set; } |
public DateTime EffectiveDate { get; set; } |
||||
|
|
||||
public DateTime? LastModificationTime { get; set; } |
public int Status { get; set; } |
||||
|
|
||||
public Guid? LastModifierId { get; set; } |
public string? DataIdentityCode { get; set; } |
||||
|
|
||||
public Guid? TenantId { get; set; } |
public string? DataContent { get; set; } |
||||
|
|
||||
public string? Remark { get; set; } |
public string? SourceSystem { get; set; } |
||||
|
|
||||
public string? DataType { get; set; } |
public DateTime WriteTime { get; set; } |
||||
|
|
||||
public int DataAction { get; set; } |
public DateTime? ReadTime { get; set; } |
||||
|
|
||||
public DateTime EffectiveDate { get; set; } |
public int ErrorCode { get; set; } |
||||
|
|
||||
public int Status { get; set; } |
public string? ErrorMessage { get; set; } |
||||
|
|
||||
public string? DataIdentityCode { get; set; } |
public int RetryTimes { get; set; } |
||||
|
} |
||||
public string? DataContent { get; set; } |
|
||||
|
|
||||
public string? SourceSystem { get; set; } |
|
||||
|
|
||||
public DateTime WriteTime { get; set; } |
|
||||
|
|
||||
public DateTime? ReadTime { get; set; } |
|
||||
|
|
||||
public int ErrorCode { get; set; } |
|
||||
|
|
||||
public string? ErrorMessage { get; set; } |
|
||||
|
|
||||
public int RetryTimes { get; set; } |
|
||||
} |
|
@ -1,69 +1,57 @@ |
|||||
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic; |
using System; |
||||
using System.Collections.Generic; |
using Volo.Abp.Domain.Entities.Auditing; |
||||
|
|
||||
namespace Dy_Exchange.Z_Business; |
namespace Dy_Exchange.Z_Business; |
||||
|
|
||||
public class ArchivedOutgoingToExternal |
public class ArchivedOutgoingToExternal |
||||
: AuditedAggregateRoot<Guid>{ |
: AuditedAggregateRoot<Guid> |
||||
public Guid Id { get; set; } |
{ |
||||
|
public long Number { get; set; } |
||||
|
|
||||
public long Number { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
public Guid? TenantId { get; set; } |
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
public string? Remark { get; set; } |
||||
|
|
||||
public DateTime CreationTime { get; set; } |
public string? DataType { get; set; } |
||||
|
|
||||
public Guid? CreatorId { get; set; } |
public int TableType { get; set; } |
||||
|
|
||||
public DateTime? LastModificationTime { get; set; } |
public int DataAction { get; set; } |
||||
|
|
||||
public Guid? LastModifierId { get; set; } |
public DateTime EffectiveDate { get; set; } |
||||
|
|
||||
public Guid? TenantId { get; set; } |
public int Status { get; set; } |
||||
|
|
||||
public string? Remark { get; set; } |
public string? SourceSystem { get; set; } |
||||
|
|
||||
public string? DataType { get; set; } |
public string? SourceDataId { get; set; } |
||||
|
|
||||
public int TableType { get; set; } |
public string? SourceDataGroupCode { get; set; } |
||||
|
|
||||
public int DataAction { get; set; } |
public string? SourceDataDetailCode { get; set; } |
||||
|
|
||||
public DateTime EffectiveDate { get; set; } |
public string? SourceDataContent { get; set; } |
||||
|
|
||||
public int Status { get; set; } |
public DateTime WriteTime { get; set; } |
||||
|
|
||||
public string? SourceSystem { get; set; } |
public string? Writer { get; set; } |
||||
|
|
||||
public string? SourceDataId { get; set; } |
public string? DestinationDataId { get; set; } |
||||
|
|
||||
public string? SourceDataGroupCode { get; set; } |
public string? DestinationDataContent { get; set; } |
||||
|
|
||||
public string? SourceDataDetailCode { get; set; } |
public string? DestinationSystem { get; set; } |
||||
|
|
||||
public string? SourceDataContent { get; set; } |
public DateTime? ReadTime { get; set; } |
||||
|
|
||||
public DateTime WriteTime { get; set; } |
public string? Reader { get; set; } |
||||
|
|
||||
public string? Writer { get; set; } |
public int ErrorCode { get; set; } |
||||
|
|
||||
public string? DestinationDataId { get; set; } |
public string? ErrorMessage { get; set; } |
||||
|
|
||||
public string? DestinationDataContent { get; set; } |
public int RetryTimes { get; set; } |
||||
|
|
||||
public string? DestinationSystem { get; set; } |
public string? SerialNumber { get; set; } |
||||
|
} |
||||
public DateTime? ReadTime { get; set; } |
|
||||
|
|
||||
public string? Reader { get; set; } |
|
||||
|
|
||||
public int ErrorCode { get; set; } |
|
||||
|
|
||||
public string? ErrorMessage { get; set; } |
|
||||
|
|
||||
public int RetryTimes { get; set; } |
|
||||
|
|
||||
public string? SerialNumber { get; set; } |
|
||||
} |
|
@ -1,67 +1,55 @@ |
|||||
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic; |
using System; |
||||
using System.Collections.Generic; |
using Volo.Abp.Domain.Entities.Auditing; |
||||
|
|
||||
namespace Dy_Exchange.Z_Business; |
namespace Dy_Exchange.Z_Business; |
||||
|
|
||||
public class DataExchangeArchivedIncomingFromExternal |
public class DataExchangeArchivedIncomingFromExternal |
||||
: AuditedAggregateRoot<Guid>{ |
: AuditedAggregateRoot<Guid> |
||||
public Guid Id { get; set; } |
{ |
||||
|
public long Number { get; set; } |
||||
|
|
||||
public long Number { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
public Guid? TenantId { get; set; } |
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
public string? Remark { get; set; } |
||||
|
|
||||
public DateTime CreationTime { get; set; } |
public string DataType { get; set; } = null!; |
||||
|
|
||||
public Guid? CreatorId { get; set; } |
public int TableType { get; set; } |
||||
|
|
||||
public DateTime? LastModificationTime { get; set; } |
public int DataAction { get; set; } |
||||
|
|
||||
public Guid? LastModifierId { get; set; } |
public DateTime EffectiveDate { get; set; } |
||||
|
|
||||
public Guid? TenantId { get; set; } |
public string Status { get; set; } = null!; |
||||
|
|
||||
public string? Remark { get; set; } |
public string SourceSystem { get; set; } = null!; |
||||
|
|
||||
public string DataType { get; set; } = null!; |
public string SourceDataId { get; set; } = null!; |
||||
|
|
||||
public int TableType { get; set; } |
public string SourceDataGroupCode { get; set; } = null!; |
||||
|
|
||||
public int DataAction { get; set; } |
public string? SourceDataDetailCode { get; set; } |
||||
|
|
||||
public DateTime EffectiveDate { get; set; } |
public string? SourceDataContent { get; set; } |
||||
|
|
||||
public string Status { get; set; } = null!; |
public DateTime WriteTime { get; set; } |
||||
|
|
||||
public string SourceSystem { get; set; } = null!; |
public string? Writer { get; set; } |
||||
|
|
||||
public string SourceDataId { get; set; } = null!; |
public string? DestinationDataId { get; set; } |
||||
|
|
||||
public string SourceDataGroupCode { get; set; } = null!; |
public string? DestinationDataContent { get; set; } |
||||
|
|
||||
public string? SourceDataDetailCode { get; set; } |
public string DestinationSystem { get; set; } = null!; |
||||
|
|
||||
public string? SourceDataContent { get; set; } |
public DateTime? ReadTime { get; set; } |
||||
|
|
||||
public DateTime WriteTime { get; set; } |
public string? Reader { get; set; } |
||||
|
|
||||
public string? Writer { get; set; } |
public string ErrorCode { get; set; } = null!; |
||||
|
|
||||
public string? DestinationDataId { get; set; } |
public string? ErrorMessage { get; set; } |
||||
|
|
||||
public string? DestinationDataContent { get; set; } |
public int RetryTimes { get; set; } |
||||
|
} |
||||
public string DestinationSystem { get; set; } = null!; |
|
||||
|
|
||||
public DateTime? ReadTime { get; set; } |
|
||||
|
|
||||
public string? Reader { get; set; } |
|
||||
|
|
||||
public string ErrorCode { get; set; } = null!; |
|
||||
|
|
||||
public string? ErrorMessage { get; set; } |
|
||||
|
|
||||
public int RetryTimes { get; set; } |
|
||||
} |
|
@ -1,53 +1,41 @@ |
|||||
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic; |
using System; |
||||
using System.Collections.Generic; |
using Volo.Abp.Domain.Entities.Auditing; |
||||
|
|
||||
namespace Dy_Exchange.Z_Business; |
namespace Dy_Exchange.Z_Business; |
||||
|
|
||||
public class DataExchangeArchivedOutgoingFromWm |
public class DataExchangeArchivedOutgoingFromWm |
||||
: AuditedAggregateRoot<Guid>{ |
: AuditedAggregateRoot<Guid> |
||||
public Guid Id { get; set; } |
{ |
||||
|
public long Number { get; set; } |
||||
|
|
||||
public long Number { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
public Guid? TenantId { get; set; } |
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
public string? Remark { get; set; } |
||||
|
|
||||
public DateTime CreationTime { get; set; } |
public string DataType { get; set; } = null!; |
||||
|
|
||||
public Guid? CreatorId { get; set; } |
public int DataAction { get; set; } |
||||
|
|
||||
public DateTime? LastModificationTime { get; set; } |
public DateTime EffectiveDate { get; set; } |
||||
|
|
||||
public Guid? LastModifierId { get; set; } |
public string Status { get; set; } = null!; |
||||
|
|
||||
public Guid? TenantId { get; set; } |
public string DataIdentityCode { get; set; } = null!; |
||||
|
|
||||
public string? Remark { get; set; } |
public string? DataContent { get; set; } |
||||
|
|
||||
public string DataType { get; set; } = null!; |
public string? SourceSystem { get; set; } |
||||
|
|
||||
public int DataAction { get; set; } |
public DateTime WriteTime { get; set; } |
||||
|
|
||||
public DateTime EffectiveDate { get; set; } |
public DateTime? ReadTime { get; set; } |
||||
|
|
||||
public string Status { get; set; } = null!; |
public string ErrorCode { get; set; } = null!; |
||||
|
|
||||
public string DataIdentityCode { get; set; } = null!; |
public string? ErrorMessage { get; set; } |
||||
|
|
||||
public string? DataContent { get; set; } |
public int RetryTimes { get; set; } |
||||
|
|
||||
public string? SourceSystem { get; set; } |
public string? TyrpNumber { get; set; } |
||||
|
} |
||||
public DateTime WriteTime { get; set; } |
|
||||
|
|
||||
public DateTime? ReadTime { get; set; } |
|
||||
|
|
||||
public string ErrorCode { get; set; } = null!; |
|
||||
|
|
||||
public string? ErrorMessage { get; set; } |
|
||||
|
|
||||
public int RetryTimes { get; set; } |
|
||||
|
|
||||
public string? TyrpNumber { get; set; } |
|
||||
} |
|
@ -1,67 +1,55 @@ |
|||||
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic; |
using System; |
||||
using System.Collections.Generic; |
using Volo.Abp.Domain.Entities.Auditing; |
||||
|
|
||||
namespace Dy_Exchange.Z_Business; |
namespace Dy_Exchange.Z_Business; |
||||
|
|
||||
public class DataExchangeIncomingFromExternal |
public class DataExchangeIncomingFromExternal |
||||
: AuditedAggregateRoot<Guid>{ |
: AuditedAggregateRoot<Guid> |
||||
public Guid Id { get; set; } |
{ |
||||
|
public long Number { get; set; } |
||||
|
|
||||
public long Number { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
public Guid? TenantId { get; set; } |
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
public string? Remark { get; set; } |
||||
|
|
||||
public DateTime CreationTime { get; set; } |
public string DataType { get; set; } = null!; |
||||
|
|
||||
public Guid? CreatorId { get; set; } |
public int TableType { get; set; } |
||||
|
|
||||
public DateTime? LastModificationTime { get; set; } |
public int DataAction { get; set; } |
||||
|
|
||||
public Guid? LastModifierId { get; set; } |
public DateTime EffectiveDate { get; set; } |
||||
|
|
||||
public Guid? TenantId { get; set; } |
public string Status { get; set; } = null!; |
||||
|
|
||||
public string? Remark { get; set; } |
public string SourceSystem { get; set; } = null!; |
||||
|
|
||||
public string DataType { get; set; } = null!; |
public string SourceDataId { get; set; } = null!; |
||||
|
|
||||
public int TableType { get; set; } |
public string SourceDataGroupCode { get; set; } = null!; |
||||
|
|
||||
public int DataAction { get; set; } |
public string? SourceDataDetailCode { get; set; } |
||||
|
|
||||
public DateTime EffectiveDate { get; set; } |
public string? SourceDataContent { get; set; } |
||||
|
|
||||
public string Status { get; set; } = null!; |
public DateTime WriteTime { get; set; } |
||||
|
|
||||
public string SourceSystem { get; set; } = null!; |
public string? Writer { get; set; } |
||||
|
|
||||
public string SourceDataId { get; set; } = null!; |
public string? DestinationDataId { get; set; } |
||||
|
|
||||
public string SourceDataGroupCode { get; set; } = null!; |
public string? DestinationDataContent { get; set; } |
||||
|
|
||||
public string? SourceDataDetailCode { get; set; } |
public string DestinationSystem { get; set; } = null!; |
||||
|
|
||||
public string? SourceDataContent { get; set; } |
public DateTime? ReadTime { get; set; } |
||||
|
|
||||
public DateTime WriteTime { get; set; } |
public string? Reader { get; set; } |
||||
|
|
||||
public string? Writer { get; set; } |
public string ErrorCode { get; set; } = null!; |
||||
|
|
||||
public string? DestinationDataId { get; set; } |
public string? ErrorMessage { get; set; } |
||||
|
|
||||
public string? DestinationDataContent { get; set; } |
public int RetryTimes { get; set; } |
||||
|
} |
||||
public string DestinationSystem { get; set; } = null!; |
|
||||
|
|
||||
public DateTime? ReadTime { get; set; } |
|
||||
|
|
||||
public string? Reader { get; set; } |
|
||||
|
|
||||
public string ErrorCode { get; set; } = null!; |
|
||||
|
|
||||
public string? ErrorMessage { get; set; } |
|
||||
|
|
||||
public int RetryTimes { get; set; } |
|
||||
} |
|
@ -1,20 +1,20 @@ |
|||||
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic; |
using System; |
||||
using System.Collections.Generic; |
using Volo.Abp.Domain.Entities.Auditing; |
||||
|
|
||||
namespace Dy_Exchange.Z_Business; |
namespace Dy_Exchange.Z_Business; |
||||
|
|
||||
public class DataExchangeInterfaceConfig |
public class DataExchangeInterfaceConfig |
||||
: AuditedAggregateRoot<Guid>{ |
: AuditedAggregateRoot<Guid> |
||||
|
{ |
||||
public string? Name { get; set; } |
public string? Name { get; set; } |
||||
|
|
||||
public string? Code { get; set; } |
public string? Code { get; set; } |
||||
|
|
||||
public bool Active { get; set; } |
public bool Active { get; set; } |
||||
|
|
||||
public int Level { get; set; } |
public int Level { get; set; } |
||||
|
|
||||
public Guid? TenantId { get; set; } |
public Guid? TenantId { get; set; } |
||||
|
|
||||
public string? Remark { get; set; } |
public string? Remark { get; set; } |
||||
} |
} |
@ -1,29 +1,24 @@ |
|||||
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic; |
using System; |
||||
using System.Collections.Generic; |
using Volo.Abp.Domain.Entities.Auditing; |
||||
|
|
||||
namespace Dy_Exchange.Z_Business; |
namespace Dy_Exchange.Z_Business; |
||||
|
|
||||
public class DataExchangeMessageReceive |
public class DataExchangeMessageReceive |
||||
: AuditedAggregateRoot<Guid>{ |
: AuditedAggregateRoot<Guid> |
||||
public Guid Id { get; set; } |
{ |
||||
|
public string? MessageFileName { get; set; } |
||||
|
|
||||
public string? MessageFileName { get; set; } |
public string? MessageContent { get; set; } |
||||
|
|
||||
public string? MessageContent { get; set; } |
public string ReceiveStatus { get; set; } = null!; |
||||
|
|
||||
public string ReceiveStatus { get; set; } = null!; |
public DateTime ReceiveTime { get; set; } |
||||
|
|
||||
public DateTime ReceiveTime { get; set; } |
public DateTime? LastUpdateTime { get; set; } |
||||
|
|
||||
public DateTime? LastUpdateTime { get; set; } |
public int? ErrorCount { get; set; } |
||||
|
|
||||
public int? ErrorCount { get; set; } |
public string? ErrorMessage { get; set; } |
||||
|
|
||||
public string? ErrorMessage { get; set; } |
public string? Type { get; set; } |
||||
|
} |
||||
public string? Type { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
|
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
|
||||
} |
|
@ -1,55 +1,43 @@ |
|||||
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic; |
using System; |
||||
using System.Collections.Generic; |
using Volo.Abp.Domain.Entities.Auditing; |
||||
|
|
||||
namespace Dy_Exchange.Z_Business; |
namespace Dy_Exchange.Z_Business; |
||||
|
|
||||
public class DataExchangeOutgoingFromWm |
public class DataExchangeOutgoingFromWm |
||||
: AuditedAggregateRoot<Guid>{ |
: AuditedAggregateRoot<Guid> |
||||
public Guid Id { get; set; } |
{ |
||||
|
public long Number { get; set; } |
||||
|
|
||||
public long Number { get; set; } |
public string DestinationSystem { get; set; } = null!; |
||||
|
|
||||
public string DestinationSystem { get; set; } = null!; |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
public Guid? TenantId { get; set; } |
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
public string? Remark { get; set; } |
||||
|
|
||||
public DateTime CreationTime { get; set; } |
public string DataType { get; set; } = null!; |
||||
|
|
||||
public Guid? CreatorId { get; set; } |
public int DataAction { get; set; } |
||||
|
|
||||
public DateTime? LastModificationTime { get; set; } |
public DateTime EffectiveDate { get; set; } |
||||
|
|
||||
public Guid? LastModifierId { get; set; } |
public string Status { get; set; } = null!; |
||||
|
|
||||
public Guid? TenantId { get; set; } |
public string DataIdentityCode { get; set; } = null!; |
||||
|
|
||||
public string? Remark { get; set; } |
public string? DataContent { get; set; } |
||||
|
|
||||
public string DataType { get; set; } = null!; |
public string? SourceSystem { get; set; } |
||||
|
|
||||
public int DataAction { get; set; } |
public DateTime WriteTime { get; set; } |
||||
|
|
||||
public DateTime EffectiveDate { get; set; } |
public DateTime? ReadTime { get; set; } |
||||
|
|
||||
public string Status { get; set; } = null!; |
public string ErrorCode { get; set; } = null!; |
||||
|
|
||||
public string DataIdentityCode { get; set; } = null!; |
public string? ErrorMessage { get; set; } |
||||
|
|
||||
public string? DataContent { get; set; } |
public int RetryTimes { get; set; } |
||||
|
|
||||
public string? SourceSystem { get; set; } |
public string? TyrpNumber { get; set; } |
||||
|
} |
||||
public DateTime WriteTime { get; set; } |
|
||||
|
|
||||
public DateTime? ReadTime { get; set; } |
|
||||
|
|
||||
public string ErrorCode { get; set; } = null!; |
|
||||
|
|
||||
public string? ErrorMessage { get; set; } |
|
||||
|
|
||||
public int RetryTimes { get; set; } |
|
||||
|
|
||||
public string? TyrpNumber { get; set; } |
|
||||
} |
|
@ -1,51 +1,39 @@ |
|||||
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic; |
using System; |
||||
using System.Collections.Generic; |
using Volo.Abp.Domain.Entities.Auditing; |
||||
|
|
||||
namespace Dy_Exchange.Z_Business; |
namespace Dy_Exchange.Z_Business; |
||||
|
|
||||
public class IncomingToWm |
public class IncomingToWm |
||||
: AuditedAggregateRoot<Guid>{ |
: AuditedAggregateRoot<Guid> |
||||
public Guid Id { get; set; } |
{ |
||||
|
public long Number { get; set; } |
||||
|
|
||||
public long Number { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
public Guid? TenantId { get; set; } |
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
public string? Remark { get; set; } |
||||
|
|
||||
public DateTime CreationTime { get; set; } |
public string? DataType { get; set; } |
||||
|
|
||||
public Guid? CreatorId { get; set; } |
public int DataAction { get; set; } |
||||
|
|
||||
public DateTime? LastModificationTime { get; set; } |
public DateTime EffectiveDate { get; set; } |
||||
|
|
||||
public Guid? LastModifierId { get; set; } |
public int Status { get; set; } |
||||
|
|
||||
public Guid? TenantId { get; set; } |
public string? DataIdentityCode { get; set; } |
||||
|
|
||||
public string? Remark { get; set; } |
public string? DataContent { get; set; } |
||||
|
|
||||
public string? DataType { get; set; } |
public string? SourceSystem { get; set; } |
||||
|
|
||||
public int DataAction { get; set; } |
public DateTime WriteTime { get; set; } |
||||
|
|
||||
public DateTime EffectiveDate { get; set; } |
public DateTime? ReadTime { get; set; } |
||||
|
|
||||
public int Status { get; set; } |
public int ErrorCode { get; set; } |
||||
|
|
||||
public string? DataIdentityCode { get; set; } |
public string? ErrorMessage { get; set; } |
||||
|
|
||||
public string? DataContent { get; set; } |
public int RetryTimes { get; set; } |
||||
|
} |
||||
public string? SourceSystem { get; set; } |
|
||||
|
|
||||
public DateTime WriteTime { get; set; } |
|
||||
|
|
||||
public DateTime? ReadTime { get; set; } |
|
||||
|
|
||||
public int ErrorCode { get; set; } |
|
||||
|
|
||||
public string? ErrorMessage { get; set; } |
|
||||
|
|
||||
public int RetryTimes { get; set; } |
|
||||
} |
|
@ -1,69 +1,57 @@ |
|||||
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic; |
using System; |
||||
using System.Collections.Generic; |
using Volo.Abp.Domain.Entities.Auditing; |
||||
|
|
||||
namespace Dy_Exchange.Z_Business; |
namespace Dy_Exchange.Z_Business; |
||||
|
|
||||
public class OutgoingToExternal |
public class OutgoingToExternal |
||||
: AuditedAggregateRoot<Guid>{ |
: AuditedAggregateRoot<Guid> |
||||
public Guid Id { get; set; } |
{ |
||||
|
public long Number { get; set; } |
||||
|
|
||||
public long Number { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
public Guid? TenantId { get; set; } |
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
public string? Remark { get; set; } |
||||
|
|
||||
public DateTime CreationTime { get; set; } |
public string? DataType { get; set; } |
||||
|
|
||||
public Guid? CreatorId { get; set; } |
public int TableType { get; set; } |
||||
|
|
||||
public DateTime? LastModificationTime { get; set; } |
public int DataAction { get; set; } |
||||
|
|
||||
public Guid? LastModifierId { get; set; } |
public DateTime EffectiveDate { get; set; } |
||||
|
|
||||
public Guid? TenantId { get; set; } |
public int Status { get; set; } |
||||
|
|
||||
public string? Remark { get; set; } |
public string? SourceSystem { get; set; } |
||||
|
|
||||
public string? DataType { get; set; } |
public string? SourceDataId { get; set; } |
||||
|
|
||||
public int TableType { get; set; } |
public string? SourceDataGroupCode { get; set; } |
||||
|
|
||||
public int DataAction { get; set; } |
public string? SourceDataDetailCode { get; set; } |
||||
|
|
||||
public DateTime EffectiveDate { get; set; } |
public string? SourceDataContent { get; set; } |
||||
|
|
||||
public int Status { get; set; } |
public DateTime WriteTime { get; set; } |
||||
|
|
||||
public string? SourceSystem { get; set; } |
public string? Writer { get; set; } |
||||
|
|
||||
public string? SourceDataId { get; set; } |
public string? DestinationDataId { get; set; } |
||||
|
|
||||
public string? SourceDataGroupCode { get; set; } |
public string? DestinationDataContent { get; set; } |
||||
|
|
||||
public string? SourceDataDetailCode { get; set; } |
public string? DestinationSystem { get; set; } |
||||
|
|
||||
public string? SourceDataContent { get; set; } |
public DateTime? ReadTime { get; set; } |
||||
|
|
||||
public DateTime WriteTime { get; set; } |
public string? Reader { get; set; } |
||||
|
|
||||
public string? Writer { get; set; } |
public int ErrorCode { get; set; } |
||||
|
|
||||
public string? DestinationDataId { get; set; } |
public string? ErrorMessage { get; set; } |
||||
|
|
||||
public string? DestinationDataContent { get; set; } |
public int RetryTimes { get; set; } |
||||
|
|
||||
public string? DestinationSystem { get; set; } |
public string? SerialNumber { get; set; } |
||||
|
} |
||||
public DateTime? ReadTime { get; set; } |
|
||||
|
|
||||
public string? Reader { get; set; } |
|
||||
|
|
||||
public int ErrorCode { get; set; } |
|
||||
|
|
||||
public string? ErrorMessage { get; set; } |
|
||||
|
|
||||
public int RetryTimes { get; set; } |
|
||||
|
|
||||
public string? SerialNumber { get; set; } |
|
||||
} |
|
Loading…
Reference in new issue