using CMS.Plugin.HIAWms.Domain.Shared.Enums; using Volo.Abp.Application.Dtos; namespace CMS.Plugin.HIAWms.Application.Contracts.Dtos.WmsAreas; /// /// WmsArea创建或更新基类 /// public abstract class WmsAreaCreateOrUpdateDtoBase : ExtensibleEntityDto { /// /// 库区编号 /// public string AreaNo { get; set; } /// /// 库区名称 /// public string AreaName { get; set; } /// /// 描述 /// public string? AreaDesc { get; set; } /// /// 库区状态 /// public AreaStatusEnum AreaStatus { get; set; } /// /// 库区类型 /// public AreaTypeEnum AreaType { get; set; } /// /// 仓库代码 /// 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 WmsAreaCreateOrUpdateDtoBase() : base(false) { } }