🎨 add @author of java doc for BaseRepositoryImpl

pull/98/head
ruibaby 2019-02-21 17:06:18 +08:00
parent c573c747fb
commit 4ba03ada8c
1 changed files with 1 additions and 0 deletions

View File

@ -20,6 +20,7 @@ import java.util.List;
*
* @param <DOMAIN> domain type
* @param <ID> id type
* @author johnniang
*/
public class BaseRepositoryImpl<DOMAIN, ID> extends SimpleJpaRepository<DOMAIN, ID> implements BaseRepository<DOMAIN, ID> {