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

com.dream.template.mapper.SelectByIdsMapper Maven / Gradle / Ivy

package com.dream.template.mapper;

import com.dream.system.config.Configuration;
import com.dream.system.core.session.Session;
import com.dream.system.table.TableInfo;

import java.util.Collection;
import java.util.List;

public class SelectByIdsMapper extends SelectMapper {

    public SelectByIdsMapper(Session session) {
        super(session);
    }

    @Override
    protected String getOther(Configuration configuration, TableInfo tableInfo, Class type, Object arg) {
        return super.getIdsWhere(tableInfo);
    }

    @Override
    protected Class getRowType() {
        return List.class;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy