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

icu.mhb.mybatisplus.plugln.enums.JoinSqlMethod Maven / Gradle / Ivy

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