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

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

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

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