MrShi
5 天以前 4fabfe4dbd2eb28d07a4350597d314958cc1c281
server/services/src/main/java/com/doumee/dao/business/web/response/RidesDetailResponse.java
@@ -1,5 +1,6 @@
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;
@@ -20,13 +21,23 @@
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;