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.
15 lines
405 B
15 lines
405 B
using System.ComponentModel.DataAnnotations;
|
|
using System.Xml.Serialization;
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace Win_in.Sfs.Wms.DataExchange.Application.Contracts.Iac.Qad;
|
|
|
|
public class EntityCreateInputBase : EntityDto
|
|
{
|
|
/// <summary>
|
|
/// 跟踪编号(Trace ID)
|
|
/// </summary>
|
|
[XmlElement("traceId")]
|
|
[Display(Name = "跟踪编号")]
|
|
public string TraceId { get; set; }
|
|
}
|
|
|