You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
754 B
C#
31 lines
754 B
C#
using OpenAuth.App.FormScheme.Response;
|
|
using OpenAuth.App.Request;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.App.FormScheme.Request
|
|
{
|
|
public class FormQueryReq
|
|
{
|
|
/// <summary>
|
|
/// 分页参数
|
|
/// </summary>
|
|
public PaginationInputDto PaginationInputDto { get; set; }
|
|
/// <summary>
|
|
/// 查询参数
|
|
/// </summary>
|
|
public string QueryJson { get; set; }
|
|
/// <summary>
|
|
/// 桌面参数
|
|
/// </summary>
|
|
public string Ldparam { get; set; }
|
|
/// <summary>
|
|
/// 排序字段
|
|
/// </summary>
|
|
public string Sidx { get; set; }
|
|
}
|
|
}
|