| | |
| | | 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 = "修改价格审核 1=待审核 2=通过") |
| | | @TableField("priceAuditState") |
| | | private Integer priceAuditState; |
| | | @ApiModelProperty(value = "支付流水号") |
| | | @TableField("transactionId") |
| | | private String transactionId; |
| | | /** |
| | | * 预付金额 |
| | | */ |
| | | @TableField("paymentAdvanceMoney") |
| | | private Double paymentAdvanceMoney; |
| | | /** |
| | | * 支付方式(0:预付1:后付) |
| | | */ |
| | | @TableField("payMethod") |
| | | private Integer payMethod; |
| | | |
| | | public Integer getPayMethod() { |
| | | return payMethod; |
| | | } |
| | | |
| | | public void setPayMethod(Integer payMethod) { |
| | | this.payMethod = payMethod; |
| | | } |
| | | |
| | | public Double getPaymentAdvanceMoney() { |
| | | return paymentAdvanceMoney; |
| | | } |
| | | |
| | | public void setPaymentAdvanceMoney(Double paymentAdvanceMoney) { |
| | | this.paymentAdvanceMoney = paymentAdvanceMoney; |
| | | } |
| | | |
| | | public String getTransactionId() { |
| | | return transactionId; |
| | | } |
| | | |
| | | public void setTransactionId(String transactionId) { |
| | | this.transactionId = transactionId; |
| | | } |
| | | |
| | | public Integer getPriceAuditState() { |
| | | return priceAuditState; |
| | |
| | | this.priceType = priceType; |
| | | } |
| | | |
| | | public BigDecimal getEstimatedPrice() { |
| | | public Double getEstimatedPrice() { |
| | | return estimatedPrice; |
| | | } |
| | | |
| | | public void setEstimatedPrice(BigDecimal estimatedPrice) { |
| | | public void setEstimatedPrice(Double estimatedPrice) { |
| | | this.estimatedPrice = estimatedPrice; |
| | | } |
| | | public Integer getIsplatPay() { |