Commit b2e3ed7e authored by shiyu's avatar shiyu

成交价格

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