package com.ishop.model.response;
|
|
/**
|
* 首页商户列表
|
* @date 2023-07-23
|
*/
|
public class IndexMerchantResponse {
|
|
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 String getRectangleLogo() {
|
return rectangleLogo;
|
}
|
|
public void setRectangleLogo(String rectangleLogo) {
|
this.rectangleLogo = rectangleLogo;
|
}
|
|
public String getCoverImage() {
|
return coverImage;
|
}
|
|
public void setCoverImage(String coverImage) {
|
this.coverImage = coverImage;
|
}
|
|
public Integer getCategoryId() {
|
return categoryId;
|
}
|
|
public void setCategoryId(Integer categoryId) {
|
this.categoryId = categoryId;
|
}
|
|
public Integer getTypeId() {
|
return typeId;
|
}
|
|
public void setTypeId(Integer typeId) {
|
this.typeId = typeId;
|
}
|
|
// @ApiModelProperty(value = "商户ID")
|
private Integer id;
|
|
// @ApiModelProperty(value = "商户名称")
|
private String name;
|
|
// @ApiModelProperty(value = "商户logo(横)")
|
private String rectangleLogo;
|
|
// @ApiModelProperty(value = "商户封面图")
|
private String coverImage;
|
|
// @ApiModelProperty(value = "商户分类ID")
|
private Integer categoryId;
|
|
// @ApiModelProperty(value = "商户类型ID")
|
private Integer typeId;
|
|
}
|