You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 regels
265 B

  1. using Learun.Util;
  2. namespace Learun.Application.WebApi
  3. {
  4. /// <summary>
  5. /// 分页请求参数
  6. /// </summary>
  7. public class ReqPageParam
  8. {
  9. public Pagination pagination { get; set; }
  10. public string queryJson { get; set; }
  11. }
  12. }