| | |
| | | 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") |
| | |
| | | @ApiModelProperty(value = "支付流水号") |
| | | @TableField("transactionId") |
| | | private String transactionId; |
| | | @ApiModelProperty(value = "是否已确认 1=是 0=否") |
| | | @TableField("isConfirm") |
| | | private Integer isConfirm; |
| | | |
| | | public Integer getIsConfirm() { |
| | | return isConfirm; |
| | | } |
| | | |
| | | public void setIsConfirm(Integer isConfirm) { |
| | | this.isConfirm = isConfirm; |
| | | } |
| | | |
| | | public String getTransactionId() { |
| | | return transactionId; |
| | |
| | | this.priceType = priceType; |
| | | } |
| | | |
| | | public BigDecimal getEstimatedPrice() { |
| | | public Double getEstimatedPrice() { |
| | | return estimatedPrice; |
| | | } |
| | | |
| | | public void setEstimatedPrice(BigDecimal estimatedPrice) { |
| | | public void setEstimatedPrice(Double estimatedPrice) { |
| | | this.estimatedPrice = estimatedPrice; |
| | | } |
| | | |