|
|
@@ -15,6 +15,7 @@ import lombok.Data;
|
|
|
import lombok.NoArgsConstructor;
|
|
|
|
|
|
import javax.persistence.*;
|
|
|
+import javax.swing.*;
|
|
|
import java.math.BigDecimal;
|
|
|
import java.math.BigInteger;
|
|
|
import java.util.List;
|
|
|
@@ -170,6 +171,25 @@ public class Asset extends BaseEntity {
|
|
|
@ApiModelProperty("最多可放藏品数量")
|
|
|
private Integer maxCollection;
|
|
|
|
|
|
+ @ApiModelProperty("3D图标")
|
|
|
+ private String Icon3d;
|
|
|
+
|
|
|
+ @ApiModelProperty("藏品数字码")
|
|
|
+ private String numericCode;
|
|
|
+
|
|
|
+ @ApiModelProperty("数字权益卡")
|
|
|
+ private String numberInterests;
|
|
|
+
|
|
|
+ @ApiModelProperty("藏品类别")
|
|
|
+ private String collectionCategory;
|
|
|
+
|
|
|
+ @ApiModelProperty("藏品者的作品字段")
|
|
|
+ private String collectionWorks;
|
|
|
+
|
|
|
+ @ApiModelProperty("发行方")
|
|
|
+ private String issuer;
|
|
|
+
|
|
|
+
|
|
|
@Transient
|
|
|
private boolean opened = true;
|
|
|
|
|
|
@@ -199,6 +219,9 @@ public class Asset extends BaseEntity {
|
|
|
.holdDays(collection.getHoldDays())
|
|
|
.maxCollection(collection.getMaxCollection())
|
|
|
.showroomBg(collection.getShowroomBg())
|
|
|
+ .collectionCategory(collection.getCollectionCategory())
|
|
|
+ .collectionWorks(collection.getCollectionWorks())
|
|
|
+ .issuer(collection.getIssuer())
|
|
|
.build();
|
|
|
}
|
|
|
|