小程序 首页 项目 完成任务最新一条
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
package cn.iocoder.yudao.framework.common.page;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@Data
|
||||
@ApiModel(value = "PageDTO", description = "分页对象")
|
||||
public class PageDTO implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@ApiModelProperty("页码")
|
||||
private Integer pageNum = 1;
|
||||
|
||||
@ApiModelProperty("每页数量")
|
||||
private Integer pageSize = 10;
|
||||
|
||||
@ApiModelProperty("搜索关键字")
|
||||
private String searchKey;
|
||||
}
|
||||
Reference in New Issue
Block a user