using Volo.Abp.Application.Dtos; using Volo.Abp.Domain.Entities; namespace CMS.Plugin.HIAWms.Application.Contracts.Dtos.WmsStores; /// /// WmsStore数据参数对象 /// public class WmsStoreDto : ExtensibleEntityDto, IHasConcurrencyStamp { /// /// 仓库代码 /// public string? StoreCode { get; set; } /// /// 仓库名称 /// public string? StoreName { get; set; } /// /// 冗余字段1 - 预留扩展用途 /// public string RedundantField1 { get; set; } /// /// 冗余字段2 - 预留扩展用途 /// public string RedundantField2 { get; set; } /// /// 冗余字段3 - 预留扩展用途 /// public string RedundantField3 { get; set; } /// /// 排序 /// public virtual int Sort { get; set; } /// /// 备注 /// public virtual string Remark { get; set; } /// /// 是否禁用 /// public virtual bool? IsDisabled { get; set; } /// /// 并发戳 /// public string ConcurrencyStamp { 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; } } /// /// 做仓库选择使用 /// public class WmsStoreForAreaOutpur { /// /// 仓库代码 /// public string? StoreCode { get; set; } /// /// 仓库名称 /// public string? StoreName { get; set; } }