| | |
| | | private Integer priceType; |
| | | @ApiModelProperty(value = "预估价") |
| | | @TableField("estimatedPrice") |
| | | private BigDecimal estimatedPrice; |
| | | private Double estimatedPrice; |
| | | |
| | | @ApiModelProperty(value = "上一次定位推送时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | |
| | | this.priceType = priceType; |
| | | } |
| | | |
| | | public BigDecimal getEstimatedPrice() { |
| | | public Double getEstimatedPrice() { |
| | | return estimatedPrice; |
| | | } |
| | | |
| | | public void setEstimatedPrice(BigDecimal estimatedPrice) { |
| | | public void setEstimatedPrice(Double estimatedPrice) { |
| | | this.estimatedPrice = estimatedPrice; |
| | | } |
| | | |