package com.matrix.system.app.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.matrix.core.tools.DateUtil;
|
import com.matrix.system.hive.bean.SysVipLabel;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* @author wzy
|
* @date 2020-12-22
|
**/
|
@ApiModel(value = "VipInfoDetailVo", description = "客户详细信息接口返回类")
|
public class VipInfoDetailVo {
|
|
@ApiModelProperty(value = "头像")
|
private String photo;
|
|
@ApiModelProperty(value = "资金密码")
|
private String password;
|
|
@ApiModelProperty(value = "会员ID")
|
private Long id;
|
|
@ApiModelProperty(value = "会员编号")
|
private String vipNo;
|
|
@ApiModelProperty(value = "会员姓名")
|
private String vipName;
|
|
@ApiModelProperty(value = "手机号")
|
private String phone;
|
|
@ApiModelProperty(value = "性别")
|
private String sex;
|
|
@ApiModelProperty(value = "生日")
|
@JsonFormat(pattern = DateUtil.DATE_FORMAT_DD, timezone = "GMT+8")
|
private Date birthday;
|
|
@ApiModelProperty(value = "省")
|
private String province;
|
|
@ApiModelProperty(value = "市")
|
private String city;
|
|
@ApiModelProperty(value = "区")
|
private String area;
|
|
@ApiModelProperty(value = "详细地址")
|
private String address;
|
|
@ApiModelProperty(value = "到店途径")
|
private String arrivalWay;
|
|
@ApiModelProperty(value = "推荐人ID")
|
private Long recommendId;
|
|
@ApiModelProperty(value = "备注")
|
private String remark;
|
|
@ApiModelProperty(value = "标签")
|
private List<SysVipLabel> labels;
|
|
public List<SysVipLabel> getLabels() {
|
return labels;
|
}
|
|
public void setLabels(List<SysVipLabel> labels) {
|
this.labels = labels;
|
}
|
|
public String getVipNo() {
|
return vipNo;
|
}
|
|
public void setVipNo(String vipNo) {
|
this.vipNo = vipNo;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getVipName() {
|
return vipName;
|
}
|
|
public void setVipName(String vipName) {
|
this.vipName = vipName;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public String getSex() {
|
return sex;
|
}
|
|
public void setSex(String sex) {
|
this.sex = sex;
|
}
|
|
public Date getBirthday() {
|
return birthday;
|
}
|
|
public void setBirthday(Date birthday) {
|
this.birthday = birthday;
|
}
|
|
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 getArea() {
|
return area;
|
}
|
|
public void setArea(String area) {
|
this.area = area;
|
}
|
|
public String getAddress() {
|
return address;
|
}
|
|
public void setAddress(String address) {
|
this.address = address;
|
}
|
|
public String getArrivalWay() {
|
return arrivalWay;
|
}
|
|
public void setArrivalWay(String arrivalWay) {
|
this.arrivalWay = arrivalWay;
|
}
|
|
public Long getRecommendId() {
|
return recommendId;
|
}
|
|
public void setRecommendId(Long recommendId) {
|
this.recommendId = recommendId;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public String getPhoto() {
|
return photo;
|
}
|
|
public void setPhoto(String photo) {
|
this.photo = photo;
|
}
|
|
public String getPassword() {
|
return password;
|
}
|
|
public void setPassword(String password) {
|
this.password = password;
|
}
|
}
|