21 lines
488 B
C#
21 lines
488 B
C#
namespace Atomx.Admin.Client.Models
|
|
{
|
|
public class WarehouseSearch : BaseSearch
|
|
{
|
|
/// <summary>
|
|
/// 仓库名称
|
|
/// </summary>
|
|
public string? Name { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 企业ID
|
|
/// </summary>
|
|
public long CorporationId { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 企业名称
|
|
/// </summary>
|
|
public string CorporationName { get; set; } = string.Empty;
|
|
}
|
|
}
|