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

org.beetl.sql.mapper.internal.UpsertAMI Maven / Gradle / Ivy

The newest version!
package org.beetl.sql.mapper.internal;

import org.beetl.sql.core.SQLManager;
import org.beetl.sql.mapper.MapperInvoke;

import java.lang.reflect.Method;

/**
 * @author Succy([email protected])
 * create on 2019/1/12
 */
public class UpsertAMI extends MapperInvoke {
    @Override
    public Object call(SQLManager sm, Class entityClass, Method m, Object[] args) {

        boolean result ;
        if (args.length == 1) {
            result = sm.upsert(args[0]);
        }else{
            throw  new IllegalArgumentException("期望一个参数");
        }
        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy