package com.ishop.model.vo;
|
|
import com.ishop.model.po.EbMerchantProductGuaranteeGroup;
|
|
import java.io.Serializable;
|
import java.util.ArrayList;
|
import java.util.List;
|
|
/**
|
* 商品保障服务组合列表响应对象
|
* @date 2023-06-21
|
*/
|
public class GuaranteeGroupVo implements Serializable {
|
|
public void add(EbMerchantProductGuaranteeGroup guaranteeGroup){
|
if(this.guaranteeList == null){
|
this.guaranteeList = new ArrayList<>(4);
|
}
|
this.guaranteeList.add(guaranteeGroup);
|
}
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Long getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Long createTime) {
|
this.createTime = createTime;
|
}
|
|
public List<EbMerchantProductGuaranteeGroup> getGuaranteeList() {
|
return guaranteeList;
|
}
|
|
public void setGuaranteeList(List<EbMerchantProductGuaranteeGroup> guaranteeList) {
|
this.guaranteeList = guaranteeList;
|
}
|
|
// @ApiModelProperty(value = "组合id")
|
private Integer id;
|
|
// @ApiModelProperty(value = "组合名称")
|
private String name;
|
|
// @ApiModelProperty(value = "创建时间")
|
private Long createTime;
|
|
// @ApiModelProperty(value = "保障服务列表")
|
private List<EbMerchantProductGuaranteeGroup> guaranteeList;
|
}
|