shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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;
 
}