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

com.github.alittlehuang.data.query.support.model.SimpleSelection Maven / Gradle / Ivy

The newest version!
package com.github.alittlehuang.data.query.support.model;

import com.github.alittlehuang.data.query.specification.AggregateFunctions;
import com.github.alittlehuang.data.query.specification.Selection;
import lombok.Data;
import lombok.EqualsAndHashCode;

import java.io.Serializable;

@Data
@EqualsAndHashCode(callSuper = true)
public class SimpleSelection extends ExpressionModel implements Selection, Serializable {
    protected AggregateFunctions aggregateFunctions;

    @Override
    public AggregateFunctions getAggregateFunctions() {
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy