using Volo.Abp.Application.Dtos; namespace CMS.Plugin.HIAWms.Application.Contracts.Dtos.WmsStores; /// /// WmsStore创建或更新基类 /// public abstract class WmsStoreCreateOrUpdateDtoBase : ExtensibleEntityDto { /// /// 仓库代码 /// 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 string Remark { get; set; } /// /// Initializes a new instance of the class. /// public WmsStoreCreateOrUpdateDtoBase() : base(false) { } }