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

com.mybatishelper.core.wrapper.query.QueryWrapper Maven / Gradle / Ivy

package com.mybatishelper.core.wrapper.query;

import com.mybatishelper.core.wrapper.bridge.AbstractConditionWrapper;
import com.mybatishelper.core.wrapper.bridge.AbstractQueryWrapper;

import java.util.ArrayList;

@SuppressWarnings("WeakerAccess")
public class QueryWrapper
        extends AbstractQueryWrapper>
{
    public QueryWrapper(C where){
        super(where,new ArrayList<>(AbstractConditionWrapper.DEFAULT_CONDITION_ELEMENTS_SIZE));
    }
    public QueryWrapper(C where,AbstractQueryWrapper absWrapper) {
        super(where,absWrapper);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy