選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ReqPageParam.cs 265 B

4年前
12345678910111213
  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. }