using CMS.Plugin.HIAWms.Domain.Shared.Enums; using Volo.Abp.Application.Dtos; namespace CMS.Plugin.HIAWms.Application.Contracts.Dtos.WmsContainer; /// /// WmsContainer查询参数对象 /// public class GetWmsContainerInput : ExtensiblePagedAndSortedResultRequestDto { /// /// Gets or sets the filter. /// public string Filter { get; set; } /// /// Gets or sets the name. /// public string Name { get; set; } /// /// 托盘编号 /// public string ContainerNo { get; set; } /// /// 托盘类型 /// public ContainerTypeEnum ContainerType { get; set; } /// /// 托盘状态 /// public ContainerStatusEnum ContainerStatus { get; set; } }