Browse Source

修改 接口控制

dev_DY_CC
郑勃旭 10 months ago
parent
commit
f75e40102a
  1. 2
      InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Application.Contracts/AppBase/FasterBaseDto/FasterCreateUpdateBaseDto.cs
  2. 4
      InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Application.Contracts/Z_Business/Dtos/DataExchangeInterfaceConfigDto.cs
  3. 57
      InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/ArchivedIncomingToWm/ArchivedIncomingToWm.cs
  4. 72
      InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/ArchivedOutgoingToExternal/ArchivedOutgoingToExternal.cs
  5. 70
      InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/DataExchangeArchivedIncomingFromExternal/DataExchangeArchivedIncomingFromExternal.cs
  6. 56
      InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/DataExchangeArchivedOutgoingFromWm/DataExchangeArchivedOutgoingFromWm.cs
  7. 70
      InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/DataExchangeIncomingFromExternal/DataExchangeIncomingFromExternal.cs
  8. 24
      InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/DataExchangeInterfaceConfig/DataExchangeInterfaceConfig.cs
  9. 33
      InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/DataExchangeMessageReceive/DataExchangeMessageReceive.cs
  10. 58
      InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/DataExchangeOutgoingFromWm/DataExchangeOutgoingFromWm.cs
  11. 54
      InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/IncomingToWm/IncomingToWm.cs
  12. 72
      InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/OutgoingToExternal/OutgoingToExternal.cs

2
InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Application.Contracts/AppBase/FasterBaseDto/FasterCreateUpdateBaseDto.cs

@ -4,7 +4,7 @@ namespace WinIn.FasterZ.Inventory.AppBase.FasterBaseDto;
public class FasterCreateUpdateBaseDto
{
public Guid Id { get; set; }
public string ConcurrencyStamp { get; set; } = string.Empty;
}

4
InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Application.Contracts/Z_Business/Dtos/DataExchangeInterfaceConfigDto.cs

@ -33,12 +33,12 @@ public class DataExchangeInterfaceConfigDto : AuditedEntityDto<Guid>
/// <summary>
///
/// </summary>
public string? ExtraProperties { get; set; }
/// <summary>
///
/// </summary>
public string? ConcurrencyStamp { get; set; }
/// <summary>

57
InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/ArchivedIncomingToWm/ArchivedIncomingToWm.cs

@ -1,54 +1,41 @@
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic;
using System.Collections.Generic;
using System;
using Volo.Abp.Domain.Entities.Auditing;
namespace Dy_Exchange.Z_Business;
/// <summary>
/// 日志
/// 日志
/// </summary>
public class ArchivedIncomingToWm
: AuditedAggregateRoot<Guid>{
public Guid Id { get; set; }
public class ArchivedIncomingToWm
: AuditedAggregateRoot<Guid>
{
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 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; }
}
public int RetryTimes { get; set; }
}

72
InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/ArchivedOutgoingToExternal/ArchivedOutgoingToExternal.cs

@ -1,69 +1,57 @@
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic;
using System.Collections.Generic;
using System;
using Volo.Abp.Domain.Entities.Auditing;
namespace Dy_Exchange.Z_Business;
public class ArchivedOutgoingToExternal
: AuditedAggregateRoot<Guid>{
public Guid Id { get; set; }
public class ArchivedOutgoingToExternal
: AuditedAggregateRoot<Guid>
{
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 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; }
}
public string? SerialNumber { get; set; }
}

70
InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/DataExchangeArchivedIncomingFromExternal/DataExchangeArchivedIncomingFromExternal.cs

@ -1,67 +1,55 @@
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic;
using System.Collections.Generic;
using System;
using Volo.Abp.Domain.Entities.Auditing;
namespace Dy_Exchange.Z_Business;
public class DataExchangeArchivedIncomingFromExternal
: AuditedAggregateRoot<Guid>{
public Guid Id { get; set; }
public class DataExchangeArchivedIncomingFromExternal
: AuditedAggregateRoot<Guid>
{
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 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; }
}
public int RetryTimes { get; set; }
}

56
InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/DataExchangeArchivedOutgoingFromWm/DataExchangeArchivedOutgoingFromWm.cs

@ -1,53 +1,41 @@
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic;
using System.Collections.Generic;
using System;
using Volo.Abp.Domain.Entities.Auditing;
namespace Dy_Exchange.Z_Business;
public class DataExchangeArchivedOutgoingFromWm
: AuditedAggregateRoot<Guid>{
public Guid Id { get; set; }
public class DataExchangeArchivedOutgoingFromWm
: AuditedAggregateRoot<Guid>
{
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 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; }
}
public string? TyrpNumber { get; set; }
}

70
InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/DataExchangeIncomingFromExternal/DataExchangeIncomingFromExternal.cs

@ -1,67 +1,55 @@
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic;
using System.Collections.Generic;
using System;
using Volo.Abp.Domain.Entities.Auditing;
namespace Dy_Exchange.Z_Business;
public class DataExchangeIncomingFromExternal
: AuditedAggregateRoot<Guid>{
public Guid Id { get; set; }
public class DataExchangeIncomingFromExternal
: AuditedAggregateRoot<Guid>
{
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 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; }
}
public int RetryTimes { get; set; }
}

24
InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/DataExchangeInterfaceConfig/DataExchangeInterfaceConfig.cs

@ -1,20 +1,20 @@
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic;
using System.Collections.Generic;
using System;
using Volo.Abp.Domain.Entities.Auditing;
namespace Dy_Exchange.Z_Business;
public class DataExchangeInterfaceConfig
: AuditedAggregateRoot<Guid>{
public string? Name { get; set; }
public class DataExchangeInterfaceConfig
: AuditedAggregateRoot<Guid>
{
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; }
}

33
InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/DataExchangeMessageReceive/DataExchangeMessageReceive.cs

@ -1,29 +1,24 @@
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic;
using System.Collections.Generic;
using System;
using Volo.Abp.Domain.Entities.Auditing;
namespace Dy_Exchange.Z_Business;
public class DataExchangeMessageReceive
: AuditedAggregateRoot<Guid>{
public Guid Id { get; set; }
public class DataExchangeMessageReceive
: AuditedAggregateRoot<Guid>
{
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? ExtraProperties { get; set; }
public string? ConcurrencyStamp { get; set; }
}
public string? Type { get; set; }
}

58
InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/DataExchangeOutgoingFromWm/DataExchangeOutgoingFromWm.cs

@ -1,55 +1,43 @@
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic;
using System.Collections.Generic;
using System;
using Volo.Abp.Domain.Entities.Auditing;
namespace Dy_Exchange.Z_Business;
public class DataExchangeOutgoingFromWm
: AuditedAggregateRoot<Guid>{
public Guid Id { get; set; }
public class DataExchangeOutgoingFromWm
: AuditedAggregateRoot<Guid>
{
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 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; }
}
public string? TyrpNumber { get; set; }
}

54
InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/IncomingToWm/IncomingToWm.cs

@ -1,51 +1,39 @@
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic;
using System.Collections.Generic;
using System;
using Volo.Abp.Domain.Entities.Auditing;
namespace Dy_Exchange.Z_Business;
public class IncomingToWm
: AuditedAggregateRoot<Guid>{
public Guid Id { get; set; }
public class IncomingToWm
: AuditedAggregateRoot<Guid>
{
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 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; }
}
public int RetryTimes { get; set; }
}

72
InterFaceContorl/Dy_Exchange/src/Dy_Exchange.Domain/Z_Business/OutgoingToExternal/OutgoingToExternal.cs

@ -1,69 +1,57 @@
using System;using Volo.Abp.Domain.Entities.Auditing;using System.Collections.Generic;
using System.Collections.Generic;
using System;
using Volo.Abp.Domain.Entities.Auditing;
namespace Dy_Exchange.Z_Business;
public class OutgoingToExternal
: AuditedAggregateRoot<Guid>{
public Guid Id { get; set; }
public class OutgoingToExternal
: AuditedAggregateRoot<Guid>
{
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 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; }
}
public string? SerialNumber { get; set; }
}
Loading…
Cancel
Save