16 lines
359 B
Plaintext
16 lines
359 B
Plaintext
package ${package}.${moduleName}.dao;
|
|
|
|
import ${package}.framework.mybatis.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> {
|
|
|
|
} |