SYYTe/maku-boot-module/maku-module-generator/src/main/resources/template/java/Dao.java.ftl

16 lines
358 B
Plaintext
Raw Normal View History

2022-11-08 15:51:08 +08:00
package ${package}.${moduleName}.dao;
import ${package}.framework.common.dao.BaseDao;
import ${package}.${moduleName}.entity.${ClassName}Entity;
import org.apache.ibatis.annotations.Mapper;
/**
* ${tableComment}
*
* @author ${author} ${email}
* @since ${version} ${date}
*/
@Mapper
public interface ${ClassName}Dao extends BaseDao<${ClassName}Entity> {
}