16 lines
358 B
Plaintext
16 lines
358 B
Plaintext
![]() |
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> {
|
||
|
|
||
|
}
|