package com.ishop.model.response; public class ComputedMerchantOrderResponse { public Integer getMerId() { return merId; } public void setMerId(Integer merId) { this.merId = merId; } public Long getUserCouponId() { return userCouponId; } public void setUserCouponId(Long userCouponId) { this.userCouponId = userCouponId; } public Double getCouponFee() { return couponFee; } public void setCouponFee(Double couponFee) { this.couponFee = couponFee; } public Double getFreightFee() { return freightFee; } public void setFreightFee(Double freightFee) { this.freightFee = freightFee; } // @ApiModelProperty(value = "商户id") private Integer merId; // @ApiModelProperty(value = "优惠券编号(不选时为0)") private Long userCouponId; // @ApiModelProperty(value = "优惠券优惠金额") private Double couponFee; // @ApiModelProperty(value = "运费金额") private Double freightFee; }