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
package com.ishop.model.response;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * 购物车商户响应
 * @author 时克英
 * @date 2023-07-16
 */
public class CartMerchantResponse implements Serializable {
 
    public Integer getMerId() {
        return merId;
    }
 
    public void setMerId(Integer merId) {
        this.merId = merId;
    }
 
    public String getMerName() {
        return merName;
    }
 
    public void setMerName(String merName) {
        this.merName = merName;
    }
 
    public List<CartInfoResponse> getCartInfoList() {
        return cartInfoList;
    }
 
    public void setCartInfoList(List<CartInfoResponse> cartInfoList) {
        this.cartInfoList = cartInfoList;
    }
 
    //    @ApiModelProperty(value = "商户ID")
    private Integer merId;
 
//    @ApiModelProperty(value = "商户名称")
    private String merName;
 
//    @ApiModelProperty(value = "购物车商品信息")
    private List<CartInfoResponse> cartInfoList;
}