style: 添加 MapperConfig 方法注释。

This commit is contained in:
Suomm 2023-07-05 22:53:17 +08:00
parent 252f0001af
commit bbea7f433d

View File

@ -119,10 +119,16 @@ public class MapperConfig {
return this; return this;
} }
/**
* 是否添加 {@code @Mapper} 注解
*/
public boolean isMapperAnnotation() { public boolean isMapperAnnotation() {
return mapperAnnotation; return mapperAnnotation;
} }
/**
* 设置是否添加 {@code @Mapper} 注解
*/
public MapperConfig setMapperAnnotation(boolean mapperAnnotation) { public MapperConfig setMapperAnnotation(boolean mapperAnnotation) {
this.mapperAnnotation = mapperAnnotation; this.mapperAnnotation = mapperAnnotation;
return this; return this;