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

Commit 84375f7f authored by 胡佳晨's avatar 胡佳晨

修改 sku搜索接口

parent a0721dbd
...@@ -37,7 +37,16 @@ public class GoblinStoreMgtGoodsSkuListVo implements Serializable, Cloneable { ...@@ -37,7 +37,16 @@ public class GoblinStoreMgtGoodsSkuListVo implements Serializable, Cloneable {
private LocalDateTime saleStopTime; private LocalDateTime saleStopTime;
@ApiModelProperty(position = 33, value = "是否盲盒[0-否|1-是]") @ApiModelProperty(position = 33, value = "是否盲盒[0-否|1-是]")
private String unbox; private String unbox;
@ApiModelProperty(position = 34, value = "是否隐藏[0-默认展示|1-隐藏]")
private String skuAppear;
@ApiModelProperty(position = 35, value = "是否售罄[0-否|1-是]")
private String soldoutStatus;
@ApiModelProperty(position = 36, value = "是否购买[0-否|1-是]")
private String skuCanbuy;
@ApiModelProperty(position = 37, value = "NFT上传声明状态[0-待上传|1-已声明|2-声明失败|9-声明中]")
private String upchain;
@ApiModelProperty(position = 38, value = "盲盒命中率")
private String hitRatio;
public String getSaleStartTime() { public String getSaleStartTime() {
return DateUtil.Formatter.yyyyMMddHHmmss.format(saleStartTime); return DateUtil.Formatter.yyyyMMddHHmmss.format(saleStartTime);
...@@ -70,6 +79,11 @@ public class GoblinStoreMgtGoodsSkuListVo implements Serializable, Cloneable { ...@@ -70,6 +79,11 @@ public class GoblinStoreMgtGoodsSkuListVo implements Serializable, Cloneable {
this.setSaleStartTime(source.getSaleStartTime()); this.setSaleStartTime(source.getSaleStartTime());
this.setSaleStopTime(source.getSaleStopTime()); this.setSaleStopTime(source.getSaleStopTime());
this.setUnbox(source.getUnbox()); this.setUnbox(source.getUnbox());
this.setUpchain(source.getUpchain());
this.setSkuAppear(source.getSkuAppear());
this.setSkuCanbuy(source.getSkuCanbuy());
this.setSoldoutStatus(source.getSoldoutStatus());
this.setHitRatio(source.getHitRatio());
return this; return this;
} }
} }
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