using Volo.Abp.Application.Dtos;
namespace CMS.Plugin.HIAWms.Application.Contracts.Dtos.WmsStores;
///
/// WmsStore查询参数对象
///
public class GetWmsStoreInput : ExtensiblePagedAndSortedResultRequestDto
{
///
/// Gets or sets the filter.
///
public string Filter { get; set; }
///
/// Gets or sets the name.
///
public string Name { get; set; }
///
/// 仓库代码
///
public string? StoreCode { get; set; }
///
/// 仓库名称
///
public string? StoreName { get; set; }
}