com.github.houbb.web.common.dto.req.CommonPageReq Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-common Show documentation
Show all versions of web-common Show documentation
The web-common tool for java.
package com.github.houbb.web.common.dto.req;
/**
* 通用的分页查询入参
* @author binbin.hou
* @since 0.0.1
*/
public class CommonPageReq extends BasePageReq {
private String name;
private String id;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}