icu.mhb.mybatisplus.plugln.enums.JoinSqlMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-plus-join Show documentation
Show all versions of mybatis-plus-join Show documentation
A multi-table plugin for Mybatis Plus.
package icu.mhb.mybatisplus.plugln.enums;
/**
* @author mahuibo
* @Title: JoinSqlMethod
* @time 8/25/21 10:49 AM
*/
public enum JoinSqlMethod {
/**
* 查询
*/
JOIN_SELECT_LIST("joinSelectList", "查询满足条件所有数据", ""),
JOIN_SELECT_COUNT("joinSelectCount", "查询满足条件的总数", ""),
JOIN_SELECT_PAGE("joinSelectPage", "查询满足条件的列表分页", ""),
JOIN_SELECT_ONE("joinSelectOne", "查询满足条件的单个对象", "");
private final String method;
private final String desc;
private final String sql;
JoinSqlMethod(String method, String desc, String sql) {
this.method = method;
this.desc = desc;
this.sql = sql;
}
public String getMethod() {
return method;
}
public String getDesc() {
return desc;
}
public String getSql() {
return sql;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy