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;
|
}
|