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

cn.org.atool.fluent.mybatis.functions.FormFunction Maven / Gradle / Ivy

package cn.org.atool.fluent.mybatis.functions;

import cn.org.atool.fluent.mybatis.base.IEntity;
import cn.org.atool.fluent.mybatis.base.crud.FormSetter;
import cn.org.atool.fluent.mybatis.model.Form;
import cn.org.atool.fluent.mybatis.model.IFormApply;

import java.util.function.BiFunction;

@FunctionalInterface
public interface FormFunction
    extends BiFunction> {

    default IFormApply apply(Object object) {
        return this.apply(object, new Form());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy