mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-24 08:59:33 +08:00
18 lines
460 B
C#
18 lines
460 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
internal class JsonQueryParameter
|
|
{
|
|
public bool IsSelect { get; set; }
|
|
public bool IsJoin { get; set; }
|
|
public int? PageIndex { get; set; }
|
|
public int? PageSize { get; set; } = 20;
|
|
public bool JoinNoSelect { get { return IsJoin && !IsSelect; } }
|
|
|
|
public bool IsPage { get { return PageIndex != null; } }
|
|
}
|
|
}
|