com.github.houbb.web.common.dto.req.CommonMappingPageReq 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 CommonMappingPageReq extends BasePageReq {
/**
* 左边的标识
* @since 0.0.1
*/
private String leftId;
/**
* 右边的标识
* @since 0.0.1
*/
private String rightId;
public String getLeftId() {
return leftId;
}
public void setLeftId(String leftId) {
this.leftId = leftId;
}
public String getRightId() {
return rightId;
}
public void setRightId(String rightId) {
this.rightId = rightId;
}
}