com.cloud.platform.common.domain.request.PageQueryRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of platform-common Show documentation
Show all versions of platform-common Show documentation
project for platform-common
The newest version!
package com.cloud.platform.common.domain.request;
import com.cloud.platform.common.domain.query.BaseQuery;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @Description:
* @Author: ZhouShuai
* @Date: 2021-06-27 16:27
*/
@Data
@NoArgsConstructor
public class PageQueryRequest extends BaseQuery {
private Integer pageIndex = 1;
private Integer pageSize = 20;
private boolean queryCount = true;
private Integer start;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy