using CMS.Plugin.HIAWms.Domain.Shared.Enums; using Volo.Abp.Application.Dtos; namespace CMS.Plugin.HIAWms.Application.Contracts.Dtos.WmsPlaces; /// /// WmsPlace查询参数对象 /// public class GetWmsMaterialInfoInput : ExtensiblePagedAndSortedResultRequestDto { /// /// Gets or sets the filter. /// public string Filter { get; set; } /// /// Gets or sets the name. /// public string Name { get; set; } /// /// 编号 /// public virtual string PlaceNo { get; set; } /// /// 货位类型 /// public PlaceTypeEnum? StorageTypeNo { get; set; } /// /// 货位状态 /// public PlaceStatusEnum? PlaceStatus { get; set; } /// /// 所在库区 /// public string AreaCode { get; set; } /// /// 巷道 /// public int? Aisle { get; set; } /// /// 排 /// public int? RowNo { get; set; } /// /// 列 /// public int? ColumnNo { get; set; } /// /// 层 /// public int? LayerNo { get; set; } /// /// 是否锁定 /// public YesNoEnum? Islock { get; set; } /// /// 是否空托 /// public YesNoEnum? EmptyContainer { get; set; } }