package ${package}.${moduleName}.dao;
|
|
import ${package}.${moduleName}.entity.${className}Entity;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* ${comments} DAO 映射层
|
* +----------------------------------------------------------------------
|
* @author: ${author}
|
* +----------------------------------------------------------------------
|
* @date ${datetime}
|
* +----------------------------------------------------------------------
|
* @email ${email}
|
* +----------------------------------------------------------------------
|
*/
|
@Mapper
|
public interface ${className}Dao extends BaseMapper<${className}Entity> {
|
|
}
|