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

io.github.nichetoolkit.mybatis.MybatisRemoveLinkMapper Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package io.github.nichetoolkit.mybatis;

import io.github.nichetoolkit.rice.RestId;
import io.github.nichetoolkit.rice.mapper.RemoveLinkMapper;
import org.apache.ibatis.annotations.Lang;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.UpdateProvider;

import java.util.Collection;

/**
 * MybatisRemoveLinkMapper
 * 

The mybatis remove link mapper interface.

* @param {@link io.github.nichetoolkit.rice.RestId}

The generic parameter is RestId type.

* @param {@link java.lang.Object}

The parameter can be of any type.

* @param {@link java.lang.Object}

The parameter can be of any type.

* @author Cyan ([email protected]) * @see io.github.nichetoolkit.rice.RestId * @see io.github.nichetoolkit.mybatis.MybatisMapper * @see io.github.nichetoolkit.rice.mapper.RemoveLinkMapper * @see io.github.nichetoolkit.mybatis.MybatisRemoveMapper * @since Jdk1.8 */ public interface MybatisRemoveLinkMapper,L,I> extends MybatisMapper, RemoveLinkMapper, MybatisRemoveMapper { @Lang(MybatisSqlSourceCaching.class) @UpdateProvider(MybatisSqlProviderResolver.class) Integer removeByLinkId(@Param("linkId") L linkId, @Param("logic") Object logic); @Lang(MybatisSqlSourceCaching.class) @UpdateProvider(MybatisSqlProviderResolver.class) Integer removeDynamicByLinkId(@Param("tablename") String tablename, @Param("linkId") L linkId, @Param("logic") Object logic); @Lang(MybatisSqlSourceCaching.class) @UpdateProvider(MybatisSqlProviderResolver.class) Integer removeAllByLinkIds(@Param("linkIdList") Collection linkIdList, @Param("logic") Object logic); @Lang(MybatisSqlSourceCaching.class) @UpdateProvider(MybatisSqlProviderResolver.class) Integer removeDynamicAllByLinkIds(@Param("tablename") String tablename, @Param("linkIdList") Collection linkIdList, @Param("logic") Object logic); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy