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

com.github.houbb.web.common.dto.req.CommonMappingPageReq Maven / Gradle / Ivy

There is a newer version: 0.0.6
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy