| | |
| | | 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 = "是否存在骑行卡抵扣:0=否;1=是;") |
| | | private Integer haveDisCount; |
| | | |
| | | @ApiModelProperty(value = "抵扣金额") |
| | | private BigDecimal disCountMoney; |
| | | |
| | | @ApiModelProperty(value = "车辆类型编码") |
| | | private String paramId; |
| | | |
| | | |
| | | @ApiModelProperty(value = "骑行记录") |
| | | private List<MemberRidesResponse> memberRidesResponseList; |