namespace Atomx.Admin.Client.Models
{
public class WarehouseSearch : BaseSearch
{
///
/// 仓库名称
///
public string? Name { get; set; } = string.Empty;
///
/// 企业ID
///
public long CorporationId { get; set; } = 0;
///
/// 企业名称
///
public string CorporationName { get; set; } = string.Empty;
}
}