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

cn.org.atool.fluent.mybatis.base.mapper.UpdaterExecutor Maven / Gradle / Ivy

There is a newer version: 1.9.9
Show newest version
package cn.org.atool.fluent.mybatis.base.mapper;

import cn.org.atool.fluent.mybatis.base.crud.IUpdate;

/**
 * 更新条件执行器
 *
 * @author darui.wu
 */
@SuppressWarnings({"rawtypes"})
public class UpdaterExecutor {
    private final IRichMapper mapper;

    private final IUpdate updater;

    public UpdaterExecutor(IRichMapper mapper, IUpdate updater) {
        this.mapper = mapper;
        this.updater = updater;
    }

    public int updateBy() {
        return this.mapper.updateBy(this.updater);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy