| | |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.models.auth.In; |
| | | |
| | | import java.util.Map; |
| | | |
| | |
| | | private Double discountMoney; |
| | | @ApiModelProperty("折扣") |
| | | private Double discount; |
| | | @ApiModelProperty("是否异常 1=是 0=否") |
| | | private Integer isException; |
| | | @ApiModelProperty("预估价") |
| | | private Double estimatedPrice; |
| | | |
| | | public Double getEstimatedPrice() { |
| | | return estimatedPrice; |
| | | } |
| | | |
| | | public void setEstimatedPrice(Double estimatedPrice) { |
| | | this.estimatedPrice = estimatedPrice; |
| | | } |
| | | |
| | | public Integer getIsException() { |
| | | return isException; |
| | | } |
| | | |
| | | public void setIsException(Integer isException) { |
| | | this.isException = isException; |
| | | } |
| | | |
| | | public Double getOrderMoney() { |
| | | return orderMoney; |
| | |
| | | moneyInfoWarpper.setCouponMoney(null != map.get("couponMoney") ? Double.valueOf(map.get("couponMoney").toString()) : 0D); |
| | | moneyInfoWarpper.setDiscountMoney(null != map.get("discountMoney") ? Double.valueOf(map.get("discountMoney").toString()) : 0D); |
| | | moneyInfoWarpper.setDiscount(null != map.get("discount") ? Double.valueOf(map.get("discount").toString()) : 0D); |
| | | moneyInfoWarpper.setIsException(null != map.get("isException") ? Integer.valueOf(map.get("isException").toString()) : 0); |
| | | moneyInfoWarpper.setEstimatedPrice(null != map.get("estimatedPrice") ? Double.valueOf(map.get("estimatedPrice").toString()) : 0D); |
| | | } |
| | | return moneyInfoWarpper; |
| | | } |