Files
qhmes/yy-admin-master/YY.Admin.Services/Service/Tenant/Dto/PageTenantInput.cs

19 lines
425 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace YY.Admin.Services.Service
{
/// <summary>
/// 租户分页查询参数
/// </summary>
public class PageTenantInput : PagedRequestBase
{
/// <summary>
/// 租户名称本地映射为Title
/// </summary>
public string? Name { get; set; }
/// <summary>
/// 状态
/// </summary>
public StatusEnum? Status { get; set; }
}
}