去除无效的代码
This commit is contained in:
14
framework/src/main/resources/templates/mapper.btl
Normal file
14
framework/src/main/resources/templates/mapper.btl
Normal file
@@ -0,0 +1,14 @@
|
||||
package ${entity.daoPackage};
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import ${entity.entityPackage}.${entity.className};
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* ${entity.description} Dao层
|
||||
* @author ${entity.author}
|
||||
*/
|
||||
public interface ${entity.className}Mapper extends BaseMapper<${entity.className}> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user