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

com.easy.query.api4j.sql.impl.SQLColumnOnlySelectorImpl Maven / Gradle / Ivy

There is a newer version: 2.3.3
Show newest version
package com.easy.query.api4j.sql.impl;

import com.easy.query.api4j.sql.SQLColumnOnlySelector;
import com.easy.query.core.expression.parser.core.base.ColumnOnlySelector;

/**
 * create time 2023/6/16 22:59
 * 文件说明
 *
 * @author xuejiaming
 */
public class SQLColumnOnlySelectorImpl implements SQLColumnOnlySelector {
    private final ColumnOnlySelector columnSetSelector;

    public SQLColumnOnlySelectorImpl(ColumnOnlySelector columnSetSelector){

        this.columnSetSelector = columnSetSelector;
    }
    @Override
    public ColumnOnlySelector getColumnOnlySelector() {
        return columnSetSelector;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy