|  |  | 
 |  |  | package com.doumee.dao.business.web.response; | 
 |  |  |  | 
 |  |  | import com.doumee.dao.business.model.BaseParam; | 
 |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
 |  |  | import io.swagger.annotations.ApiModel; | 
 |  |  | import io.swagger.annotations.ApiModelProperty; | 
 |  |  | 
 |  |  | public class RidesDetailResponse { | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "预计消费金额") | 
 |  |  |     private long amount; | 
 |  |  |     private BigDecimal amount; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "车型") | 
 |  |  |     private String bikeType; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "计费时长") | 
 |  |  |     private long  duration; | 
 |  |  |     private Integer  duration; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "骑行记录") | 
 |  |  |     private List<MemberRidesResponse> memberRidesResponseList; |