记得上下班打卡 | git大法好,push需谨慎

Commit 5dd70939 authored by 张国柄's avatar 张国柄

~api:我的藏品详情+藏品交易HASH;

parent afff9fb6
......@@ -28,6 +28,8 @@ public class GoblinUserDigitalArtworkInfoVo implements Serializable, Cloneable {
private Integer edition;
@ApiModelProperty(position = 17, value = "藏品NFT ID")
private String nftId;
@ApiModelProperty(position = 17, value = "藏品交易HASH")
private String tradingTxhash;
@ApiModelProperty(position = 18, value = "藏品生成时间[yyyy-MM-dd HH:mm:ss]")
private String generateTime;
......@@ -63,6 +65,7 @@ public class GoblinUserDigitalArtworkInfoVo implements Serializable, Cloneable {
}
public GoblinUserDigitalArtworkInfoVo copy(GoblinUserDigitalArtworkVo source) {
if (null == source) return this;
// this.setName();
// this.setSubtitle();
// this.setMaterialType();
......@@ -70,6 +73,7 @@ public class GoblinUserDigitalArtworkInfoVo implements Serializable, Cloneable {
// this.setEdition();
this.setEditionSn(source.getEditionSn());
this.setNftId(source.getNftId());
this.setTradingTxhash(source.getTradingTxhash());
this.setGenerateTime(source.getTradingAt());
this.setSource(source.getSource());
this.setState(source.getState());
......
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