|
@@ -221,6 +221,10 @@ public class Asset extends CollectionBaseEntity {
|
|
|
|
|
|
|
|
private String prefixName;
|
|
private String prefixName;
|
|
|
|
|
|
|
|
|
|
+ @ApiModelProperty("赋能列表")
|
|
|
|
|
+ @Column(columnDefinition = "TEXT")
|
|
|
|
|
+ private String empower;
|
|
|
|
|
+
|
|
|
@Transient
|
|
@Transient
|
|
|
private int num;
|
|
private int num;
|
|
|
|
|
|
|
@@ -256,6 +260,7 @@ public class Asset extends CollectionBaseEntity {
|
|
|
.source(AssetSource.OFFICIAL)
|
|
.source(AssetSource.OFFICIAL)
|
|
|
.tags(new HashSet<>(collection.getTags()))
|
|
.tags(new HashSet<>(collection.getTags()))
|
|
|
.prefixName(collection.getPrefixName())
|
|
.prefixName(collection.getPrefixName())
|
|
|
|
|
+ .empower(collection.getEmpower())
|
|
|
.build();
|
|
.build();
|
|
|
}
|
|
}
|
|
|
|
|
|