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

template.system.Mapper.vm Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
package ${package}.${moduleName}.mapper;

import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import ${package}.${moduleName}.entity.${className}Entity;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;

import java.util.Map;
/**
 * ${comments}
 * 
 * @author ${author}
 * @email ${email}
 * @date ${datetime}
 */
public interface ${className}Mapper extends BaseMapper<${className}Entity> {

    IPage<${className}Entity> search(Page<${className}Entity> page, @Param("param") Map param);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy