32
32
import com .baomidou .mybatisplus .generator .config .po .TableInfo ;
33
33
import com .baomidou .mybatisplus .generator .config .rules .NamingStrategy ;
34
34
import com .baomidou .mybatisplus .generator .function .ConverterFileName ;
35
- import com .baomidou .mybatisplus .generator .model .AnnotationAttributes ;
35
+ import com .baomidou .mybatisplus .generator .model .ClassAnnotationAttributes ;
36
36
import com .baomidou .mybatisplus .generator .util .ClassUtils ;
37
37
import lombok .Getter ;
38
38
import org .jetbrains .annotations .NotNull ;
@@ -240,7 +240,7 @@ private Entity() {
240
240
* @since 3.5.10
241
241
*/
242
242
@ Getter
243
- private final List <AnnotationAttributes > classAnnotations = new ArrayList <>();
243
+ private final List <ClassAnnotationAttributes > classAnnotations = new ArrayList <>();
244
244
245
245
/**
246
246
* <p>
@@ -371,12 +371,12 @@ public Map<String, Object> renderData(@NotNull TableInfo tableInfo) {
371
371
if (!kotlin ) {
372
372
// 原先kt模板没有处理这些,作为兼容项
373
373
if (chain ) {
374
- this .classAnnotations .add (new AnnotationAttributes ("@Accessors(chain = true)" , "lombok.experimental.Accessors" ));
374
+ this .classAnnotations .add (new ClassAnnotationAttributes ("@Accessors(chain = true)" , "lombok.experimental.Accessors" ));
375
375
}
376
376
if (lombok && defaultLombok ) {
377
377
// 原先lombok默认只有这两个
378
- this .classAnnotations .add (new AnnotationAttributes ("@Getter" , "lombok.Getter" ));
379
- this .classAnnotations .add (new AnnotationAttributes ("@Setter" , "lombok.Setter" ));
378
+ this .classAnnotations .add (new ClassAnnotationAttributes ("@Getter" , "lombok.Getter" ));
379
+ this .classAnnotations .add (new ClassAnnotationAttributes ("@Setter" , "lombok.Setter" ));
380
380
}
381
381
}
382
382
if (tableInfo .isConvert ()) {
@@ -388,23 +388,21 @@ public Map<String, Object> renderData(@NotNull TableInfo tableInfo) {
388
388
}
389
389
//@TableName("${schemaName}${table.name}")
390
390
String displayName = String .format ("@TableName(\" %s%s\" )" , schemaName , tableInfo .getName ());
391
- this .classAnnotations .add (new AnnotationAttributes (TableName .class , displayName ));
391
+ this .classAnnotations .add (new ClassAnnotationAttributes (TableName .class , displayName ));
392
392
}
393
393
if (globalConfig .isSwagger ()) {
394
394
//@ApiModel(value = "${entity}对象", description = "${table.comment!}")
395
395
String displayName = String .format ("@ApiModel(value = \" %s对象\" , description = \" %s\" )" , tableInfo .getEntityName (), comment );
396
- this .classAnnotations .add (new AnnotationAttributes ( "@ApiModel" ,
396
+ this .classAnnotations .add (new ClassAnnotationAttributes (
397
397
displayName , "io.swagger.annotations.ApiModel" , "io.swagger.annotations.ApiModelProperty" ));
398
398
}
399
399
if (globalConfig .isSpringdoc ()) {
400
400
//@Schema(name = "${entity}", description = "${table.comment!}")
401
401
String displayName = String .format ("@Schema(name = \" %s\" , description = \" %s\" )" , tableInfo .getEntityName (), comment );
402
- this .classAnnotations .add (new AnnotationAttributes (displayName , "io.swagger.v3.oas.annotations.media.Schema" ));
402
+ this .classAnnotations .add (new ClassAnnotationAttributes (displayName , "io.swagger.v3.oas.annotations.media.Schema" ));
403
403
}
404
404
this .classAnnotations .forEach (attributes -> {
405
- if (attributes .getDisplayNameFunction () != null ) {
406
- attributes .setDisplayName (attributes .getDisplayNameFunction ().apply (tableInfo ));
407
- }
405
+ attributes .handleDisplayName (tableInfo );
408
406
importPackages .addAll (attributes .getImportPackages ());
409
407
});
410
408
data .put ("entityClassAnnotations" , this .classAnnotations .stream ()
@@ -499,16 +497,16 @@ public Builder enableLombok() {
499
497
}
500
498
501
499
/**
502
- * 开启lombok模型 (这里会把注解属性都加入进去,无论是否启用kotlin )
500
+ * 开启lombok模型 (这里会把注解属性都加入进去,无论是否启用{@link GlobalConfig#isKotlin()} )
503
501
*
504
502
* @param attributes 注解属性集合
505
503
* @return this
506
504
* @since 3.5.10
507
505
*/
508
- public Builder enableLombok (@ NotNull AnnotationAttributes ... attributes ) {
506
+ public Builder enableLombok (@ NotNull ClassAnnotationAttributes ... attributes ) {
509
507
this .entity .lombok = true ;
510
508
this .entity .defaultLombok = false ;
511
- for (AnnotationAttributes attribute : attributes ) {
509
+ for (ClassAnnotationAttributes attribute : attributes ) {
512
510
this .addClassAnnotation (attribute );
513
511
}
514
512
return this ;
@@ -767,7 +765,7 @@ public Builder disable() {
767
765
* @return this
768
766
* @since 3.5.10
769
767
*/
770
- public Builder addClassAnnotation (@ NotNull AnnotationAttributes attributes ) {
768
+ public Builder addClassAnnotation (@ NotNull ClassAnnotationAttributes attributes ) {
771
769
this .entity .classAnnotations .add (attributes );
772
770
return this ;
773
771
}
0 commit comments