All Downloads are FREE. Search and download functionalities are using the official Maven repository.

love.keeping.starter.web.vo.PageVo Maven / Gradle / Ivy

package love.keeping.starter.web.vo;

import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import lombok.Data;

/**
 * 分页Vo
 *
 * @author Keeping
 */
@Data
public abstract class PageVo implements BaseVo, Serializable {

  private static final long serialVersionUID = 1L;

  /**
   * 当前页码
   */
  @ApiModelProperty(value = "当前页码", required = true)
  private Integer pageIndex;

  /**
   * 每页条数
   */
  @ApiModelProperty(value = "每页条数", required = true)
  private Integer pageSize;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy