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

org.zodiac.mybatisplus.mapper.BaseCrudMapper Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
package org.zodiac.mybatisplus.mapper;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Update;

import java.io.Serializable;

public interface BaseCrudMapper extends BaseMapper {

    @Update("UPDATE `${tableName}` SET is_deleted=0 WHERE id=#{id}")
    int cancelDeletedById(@Param("tableName") String tableName, @Param("id") Serializable id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy