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

com.javaoffers.batis.modelhelper.anno.fun.parse.ParseSqlFunResult Maven / Gradle / Ivy

There is a newer version: 3.5.11.12
Show newest version
package com.javaoffers.batis.modelhelper.anno.fun.parse;

/**
 * @author mingJie
 */
public class ParseSqlFunResult {
    String sqlFun;
    boolean isFun;
    boolean excludeColAll;

    public ParseSqlFunResult(String sqlFun, boolean isFun, boolean excludeColAll) {
        this.sqlFun = sqlFun;
        this.isFun = isFun;
        this.excludeColAll = excludeColAll;
    }

    public String getSqlFun() {
        return sqlFun;
    }

    public boolean isFun() {
        return isFun;
    }

    public boolean isExcludeColAll(){
        return excludeColAll;
    }

    public void setExcludeColAll(boolean excludeColAll) {
        this.excludeColAll = excludeColAll;
    }

    public void setFun(boolean fun) {
        isFun = fun;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy