package com.ishop.model.vo;
|
|
import java.io.Serializable;
|
|
/**
|
* 商户详细信息,商户自己管理
|
* @date 2023-07-05
|
*/
|
public class MerchantDetailVo 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 Boolean getIsSelf() {
|
return isSelf;
|
}
|
|
public void setIsSelf(Boolean self) {
|
isSelf = self;
|
}
|
|
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 String getProvince() {
|
return province;
|
}
|
|
public void setProvince(String province) {
|
this.province = province;
|
}
|
|
public String getCity() {
|
return city;
|
}
|
|
public void setCity(String city) {
|
this.city = city;
|
}
|
|
public String getDistrict() {
|
return district;
|
}
|
|
public void setDistrict(String district) {
|
this.district = district;
|
}
|
|
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 String getQualificationPicture() {
|
return qualificationPicture;
|
}
|
|
public void setQualificationPicture(String qualificationPicture) {
|
this.qualificationPicture = qualificationPicture;
|
}
|
|
public String getIntro() {
|
return intro;
|
}
|
|
public void setIntro(String intro) {
|
this.intro = intro;
|
}
|
|
public Long getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Long createTime) {
|
this.createTime = createTime;
|
}
|
|
public Integer getFollowerNum() {
|
return followerNum;
|
}
|
|
public void setFollowerNum(Integer followerNum) {
|
this.followerNum = followerNum;
|
}
|
|
public String getServiceType() {
|
return serviceType;
|
}
|
|
public void setServiceType(String serviceType) {
|
this.serviceType = serviceType;
|
}
|
|
public String getServiceLink() {
|
return serviceLink;
|
}
|
|
public void setServiceLink(String serviceLink) {
|
this.serviceLink = serviceLink;
|
}
|
|
public String getServicePhone() {
|
return servicePhone;
|
}
|
|
public void setServicePhone(String servicePhone) {
|
this.servicePhone = servicePhone;
|
}
|
|
public Boolean getIsCollect() {
|
return isCollect;
|
}
|
|
public void setIsCollect(Boolean collect) {
|
isCollect = collect;
|
}
|
|
// @ApiModelProperty(value = "商户ID")
|
private Integer id;
|
|
// @ApiModelProperty(value = "商户名称")
|
private String name;
|
|
// @ApiModelProperty(value = "是否自营:0-非自营,1-自营")
|
private Boolean isSelf;
|
|
// @ApiModelProperty(value = "商户姓名")
|
private String realName;
|
|
// @ApiModelProperty(value = "商户手机号")
|
private String phone;
|
|
// @ApiModelProperty(value = "省")
|
private String province;
|
|
// @ApiModelProperty(value = "市")
|
private String city;
|
|
// @ApiModelProperty(value = "区")
|
private String district;
|
|
// @ApiModelProperty(value = "商户详细地址")
|
private String addressDetail;
|
|
// @ApiModelProperty(value = "纬度")
|
private String latitude;
|
|
// @ApiModelProperty(value = "经度")
|
private String longitude;
|
|
// @ApiModelProperty(value = "资质图片")
|
private String qualificationPicture;
|
|
// @ApiModelProperty(value = "商户简介")
|
private String intro;
|
|
// @ApiModelProperty(value = "创建时间")
|
private Long createTime;
|
|
// @ApiModelProperty(value = "商户关注人数")
|
private Integer followerNum;
|
|
// @ApiModelProperty(value = "客服类型:H5-H5链接、phone-电话")
|
private String serviceType;
|
|
// @ApiModelProperty(value = "客服H5链接")
|
private String serviceLink;
|
|
// @ApiModelProperty(value = "客服电话")
|
private String servicePhone;
|
|
// @ApiModelProperty(value = "是否关注:0-未关注,1-已关注")
|
private Boolean isCollect;
|
}
|