package com.ishop.model.vo;
|
|
import java.io.Serializable;
|
|
/**
|
* 平台端看到商户详情。
|
* @date 2023-07-20
|
*/
|
public class PlatformMerDetailVo implements Serializable {
|
|
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 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;
|
}
|
|
public String getAccount() {
|
return account;
|
}
|
|
public void setAccount(String account) {
|
this.account = account;
|
}
|
|
public String getRealName() {
|
return realName;
|
}
|
|
public void setRealName(String realName) {
|
this.realName = realName;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public Integer getHandlingFee() {
|
return handlingFee;
|
}
|
|
public void setHandlingFee(Integer handlingFee) {
|
this.handlingFee = handlingFee;
|
}
|
|
public String getKeywords() {
|
return keywords;
|
}
|
|
public void setKeywords(String keywords) {
|
this.keywords = keywords;
|
}
|
|
public String getAddressDetail() {
|
return addressDetail;
|
}
|
|
public void setAddressDetail(String addressDetail) {
|
this.addressDetail = addressDetail;
|
}
|
|
public String getLatitude() {
|
return latitude;
|
}
|
|
public void setLatitude(String latitude) {
|
this.latitude = latitude;
|
}
|
|
public String getLongitude() {
|
return longitude;
|
}
|
|
public void setLongitude(String longitude) {
|
this.longitude = longitude;
|
}
|
|
public Boolean getIsSelf() {
|
return isSelf;
|
}
|
|
public void setIsSelf(Boolean self) {
|
isSelf = self;
|
}
|
|
public Boolean getIsRecommend() {
|
return isRecommend;
|
}
|
|
public void setIsRecommend(Boolean recommend) {
|
isRecommend = recommend;
|
}
|
|
public Boolean getProductSwitch() {
|
return productSwitch;
|
}
|
|
public void setProductSwitch(Boolean productSwitch) {
|
this.productSwitch = productSwitch;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public Integer getSort() {
|
return sort;
|
}
|
|
public void setSort(Integer sort) {
|
this.sort = sort;
|
}
|
|
public String getQualificationPicture() {
|
return qualificationPicture;
|
}
|
|
public void setQualificationPicture(String qualificationPicture) {
|
this.qualificationPicture = qualificationPicture;
|
}
|
|
public String getCreateType() {
|
return createType;
|
}
|
|
public void setCreateType(String createType) {
|
this.createType = createType;
|
}
|
|
public Long getAdminId() {
|
return adminId;
|
}
|
|
public void setAdminId(Long adminId) {
|
this.adminId = adminId;
|
}
|
|
public Integer getStarLevel() {
|
return starLevel;
|
}
|
|
public void setStarLevel(Integer starLevel) {
|
this.starLevel = starLevel;
|
}
|
|
// @ApiModelProperty(value = "商户ID")
|
private Integer id;
|
|
// @ApiModelProperty(value = "商户名称")
|
private String name;
|
|
// @ApiModelProperty(value = "商户分类ID")
|
private Integer categoryId;
|
|
// @ApiModelProperty(value = "商户类型ID")
|
private Integer typeId;
|
|
// @ApiModelProperty(value = "商户账号")
|
private String account;
|
|
// @ApiModelProperty(value = "商户姓名")
|
private String realName;
|
|
// @ApiModelProperty(value = "商户手机号")
|
private String phone;
|
|
// @ApiModelProperty(value = "手续费(%)")
|
private Integer handlingFee;
|
|
// @ApiModelProperty(value = "商户关键字")
|
private String keywords;
|
|
// @ApiModelProperty(value = "商户详细地址")
|
private String addressDetail;
|
|
// @ApiModelProperty(value = "纬度")
|
private String latitude;
|
|
// @ApiModelProperty(value = "经度")
|
private String longitude;
|
|
// @ApiModelProperty(value = "是否自营:0-自营,1-非自营")
|
private Boolean isSelf;
|
|
// @ApiModelProperty(value = "是否推荐:0-不推荐,1-推荐")
|
private Boolean isRecommend;
|
|
// @ApiModelProperty(value = "商品开关:0-关闭,1-开启")
|
private Boolean productSwitch;
|
|
// @ApiModelProperty(value = "备注")
|
private String remark;
|
|
// @ApiModelProperty(value = "排序")
|
private Integer sort;
|
|
// @ApiModelProperty(value = "资质图片")
|
private String qualificationPicture;
|
|
// @ApiModelProperty(value = "商户创建类型:admin-管理员创建,apply-商户入驻申请")
|
private String createType;
|
|
// @ApiModelProperty(value = "关联管理账号ID")
|
private Long adminId;
|
|
// @ApiModelProperty(value = "商户星级1-5")
|
private Integer starLevel;
|
}
|