Commit b2e3ed7e authored by shiyu's avatar shiyu

成交价格

parent 98d227b3
...@@ -31,7 +31,7 @@ public class BidRecordVo implements Entity { ...@@ -31,7 +31,7 @@ public class BidRecordVo implements Entity {
private Integer bidTime; private Integer bidTime;
@ApiModelProperty(value = "成交价格", name = "price") @ApiModelProperty(value = "成交价格", name = "price")
private Long price; private Double price;
@ApiModelProperty(value = "钱币描述", name = "extra") @ApiModelProperty(value = "钱币描述", name = "extra")
private String extra; private String extra;
...@@ -54,7 +54,7 @@ public class BidRecordVo implements Entity { ...@@ -54,7 +54,7 @@ public class BidRecordVo implements Entity {
this.cid = record.getCid(); this.cid = record.getCid();
this.images = Arrays.asList(record.getImages().split(";")); this.images = Arrays.asList(record.getImages().split(";"));
this.bidTime = record.getBidTime(); this.bidTime = record.getBidTime();
this.price = record.getPrice() / 100; this.price = record.getPrice() / (double)100;
this.buyer = record.getBuyer(); this.buyer = record.getBuyer();
this.platform = record.getPlatform(); this.platform = record.getPlatform();
this.extra = record.getExtra(); this.extra = record.getExtra();
......
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