| | |
| | | package com.doumee.dao.business.web.response; |
| | | |
| | | import com.doumee.dao.business.model.Ad; |
| | | import com.doumee.dao.business.model.Discount; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | |
| | | @ApiModelProperty(value = "租赁须知") |
| | | private String leaseNotice; |
| | | |
| | | @ApiModelProperty(value = "计价规则") |
| | | private String pricingRules; |
| | | @ApiModelProperty(value = "押金状态:0=未支付押金;1=已支付押金; 2=退款中") |
| | | private Integer depositStatus = 0; |
| | | |
| | | @ApiModelProperty(value = "押金状态:0=未支付押金;1=已支付押金;") |
| | | private Integer depositStatus; |
| | | @ApiModelProperty(value = "订单主键") |
| | | private String goodsOrderId; |
| | | |
| | | @ApiModelProperty(value = "骑行状态:-1=未骑行;0=请求开锁中 ;1=骑行中; 2=已还车; 3=开锁失败;") |
| | | private Integer rideStatus; |
| | |
| | | @ApiModelProperty(value = "小程序是否停止服务 0否 1是") |
| | | private Integer isStopServe; |
| | | |
| | | @ApiModelProperty(value = "小程序是否营业 0否 1是") |
| | | private Integer isBusiness; |
| | | |
| | | @ApiModelProperty(value = "未开始营业提示语") |
| | | private String unBusinessTips; |
| | | |
| | | @ApiModelProperty(value = "小程序停止服务提示") |
| | | private String stopServeTips; |
| | | |
| | | @ApiModelProperty(value = "小程序营业开始时间点") |
| | | private String businessStartTime; |
| | | |
| | | @ApiModelProperty(value = "小程序营业结束时间点") |
| | | private String businessEndTime; |
| | | |
| | | @ApiModelProperty(value = "骑行情况") |
| | | private MemberRidesResponse memberRidesResponse; |
| | |
| | | @ApiModelProperty(value = "广告信息") |
| | | private List<Ad> adList; |
| | | |
| | | @ApiModelProperty(value = "热销套餐") |
| | | private List<Discount> discountList; |
| | | |
| | | } |