Commit 767bab7a authored by tangtuo's avatar tangtuo

nft详情页面加入封面

parent b5d16b08
...@@ -23,6 +23,9 @@ public class NftVo { ...@@ -23,6 +23,9 @@ public class NftVo {
@ApiModelProperty("名称") @ApiModelProperty("名称")
private String name; private String name;
@ApiModelProperty("封面")
private String cover;
@ApiModelProperty("类目") @ApiModelProperty("类目")
private String category; private String category;
...@@ -80,6 +83,7 @@ public class NftVo { ...@@ -80,6 +83,7 @@ public class NftVo {
this.isArchives = nft.getIsArchives(); this.isArchives = nft.getIsArchives();
this.isGrant = nft.getIsGrant(); this.isGrant = nft.getIsGrant();
this.userId = nft.getUserId(); this.userId = nft.getUserId();
this.cover = nft.getCover();
this.collection = false; this.collection = false;
} }
} }
spring: spring:
profiles: profiles:
active: local active: test
application: application:
name: joying-portal name: joying-portal
servlet: servlet:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment