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

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

package com.dream.template.mapper;

import com.dream.system.config.AntlrBatchMappedStatement;
import com.dream.system.config.Command;
import com.dream.system.config.MethodInfo;
import com.dream.system.core.session.Session;

import java.util.List;

public class BatchUpdateByIdMapper extends UpdateByIdMapper {

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

    @Override
    protected Object executeValidate(MethodInfo methodInfo, Object arg) {
        return super.execute(new AntlrBatchMappedStatement(methodInfo, (List) arg));
    }

    @Override
    protected Command getCommand() {
        return Command.BATCH;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy