You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
744 B
27 lines
744 B
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Runtime.Serialization;
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace Win_in.Sfs.Wms.DataExchange.Application.Contracts.Iac.Qad;
|
|
|
|
[Serializable, DataContract]
|
|
public class EntityDtoBase : IEntityDto<Guid>, ICanTrace, IHasErrorMessage
|
|
{
|
|
[DataMember] public Guid Id { get; set; }
|
|
|
|
[DataMember] public DateTime CreationTime { get; set; }
|
|
|
|
[DataMember] public Guid? CreatorId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 跟踪编号(Trace ID)
|
|
/// </summary>
|
|
[DataMember]
|
|
[Display(Name = "跟踪编号")]
|
|
public string TraceId { get; set; }
|
|
|
|
[DataMember] public int ErrorCode { get; set; }
|
|
|
|
[DataMember] public string ErrorMessage { get; set; }
|
|
}
|
|
|