using CMS.Plugin.HIAWms.Domain.Shared.Enums; using CmsQueryExtensions; using Volo.Abp.Application.Dtos; using Volo.Abp.Data; using Volo.Abp.Domain.Entities; namespace CMS.Plugin.HIAWms.Application.Contracts.Dtos.WmsMaterialType; /// /// 物料l类型信息数据参数对象 /// public class WmsMaterialTypeDto: ExtensibleEntityDto, IHasConcurrencyStamp { /// /// 类型描述 /// public string MaterialTypeDesc { get; set; } /// /// 类型编码 /// public string MaterialTypeCode { get; set; } /// /// /// public ExtraPropertyDictionary? ExtraProperties { get; set; } /// /// /// public string? ConcurrencyStamp { get; set; } /// /// 创建时间 /// public DateTime CreationTime { get; set; } /// /// 创建人ID /// public string? CreatorId { get; set; } /// /// 最后修改时间 /// public DateTime? LastModificationTime { get; set; } /// /// 最后修改人ID /// public string? LastModifierId { get; set; } /// /// 是否已删除 /// public bool IsDeleted { get; set; } /// /// 删除人ID /// public string? DeleterId { get; set; } /// /// 删除时间 /// public DateTime? DeletionTime { get; set; } /// /// /// public string? CreatorName { get; set; } /// /// /// public string? LastModifierName { get; set; } /// /// /// public string? OperationRemark { get; set; } /// /// /// public string? DeleteRemark { get; set; } /// /// /// public int Sort { get; set; } /// /// 备注 /// public string? Remark { get; set; } /// /// /// public bool? IsDisabled { get; set; } /// /// /// public string? ExtraField1 { get; set; } /// /// /// public string? ExtraField2 { get; set; } /// /// /// public string? ExtraField3 { get; set; } /// /// Gets the export data. /// /// public Dictionary GetExportData() { var exportData = new Dictionary(); foreach (var property in this.GetType().GetProperties()) { exportData.Add(property.Name, property.GetValue(this)); } return exportData; } }