Browse Source

优化代码生成mapper模板,添加@Repository注解

NorthLan 7 years ago
parent
commit
9948758e6f
1 changed files with 3 additions and 0 deletions
  1. 3 0
      zen-orm/src/main/resources/templates/mapper.java.vm

+ 3 - 0
zen-orm/src/main/resources/templates/mapper.java.vm

@@ -5,6 +5,8 @@ import ${package.Entity}.${entity}#if(!${kotlin});#end
 
 import ${superMapperClassPackage}#if(!${kotlin});#end
 
+import org.springframework.stereotype.Repository#if(!${kotlin});#end
+
 /**
  * <p>
  * $!{table.comment} Mapper 接口
@@ -13,6 +15,7 @@ import ${superMapperClassPackage}#if(!${kotlin});#end
  * @author ${author}
  * @since ${date}
  */
+@Repository
 #if(${kotlin})
 interface ${table.mapperName} : ${superMapperClass}<${entity}>
 #else