itfx/src/InterfaceForward.Repositories/Interface/ValueObjects/InterfacePaginatedInputObjectValue.cs
2026-06-12 14:15:54 +08:00

27 lines
617 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 InterfaceForward.Repositories.Interface.ValueObjects;
/// <summary>
/// 接口分页
/// </summary>
public class InterfacePaginatedInputObjectValue : PagedQueryInput
{
/// <summary>
/// 是否上游接口
/// </summary>
public bool IsUpstream { get; set; }
/// <summary>
/// 服务商Id
/// </summary>
public int ServiceProviderId { get; set; }
///<summary>
/// 接口分组默认请选择对应0值
///</summary>
public int Category { get; set; }
///<summary>
/// 接口名
///</summary>
public string NameOrCode { get; set; }
}