package com.doumee.biz.zbom.model.zhongtai.response;
|
|
import com.doumee.biz.zbom.model.zhongtai.ZTBaseRequst;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
|
/**
|
* 客户绑定员工信息
|
*/
|
@Data
|
public class ZTCustomerBindingUsersRequest extends ZTBaseRequst {
|
|
|
/**
|
* 城市
|
*/
|
private String address;
|
/**
|
* 年龄
|
*/
|
private String age;
|
/**
|
* 应用码
|
*/
|
private String appCode;
|
/**
|
* AppID
|
*/
|
private String appId;
|
/**
|
* 客户头像
|
*/
|
private String avatarUrl;
|
/**
|
* 生日
|
*/
|
private String birthday;
|
/**
|
* 客户渠道来源编码
|
*/
|
private String channelSourceCode;
|
/**
|
* 客户单位
|
*/
|
private String customerCompany;
|
/**
|
* 客户级别
|
*/
|
private String customerLevel;
|
/**
|
* 客户所属行业
|
*/
|
private String customerTrade;
|
/**
|
* 导购账号
|
*/
|
private String daoGouAccount;
|
/**
|
* 导购类型
|
*/
|
private String daoGouType;
|
/**
|
* 导购用户Id
|
*/
|
private String daoGouUserId;
|
/**
|
* 电子邮箱
|
*/
|
private String email;
|
/**
|
* 详细地址
|
*/
|
private String fullAddress;
|
/**
|
* 性别
|
*/
|
private String gender;
|
/**
|
* 房屋面积
|
*/
|
private String houseArea;
|
/**
|
* 房屋户型
|
*/
|
private String houseLayout;
|
/**
|
* 身份证
|
*/
|
private String idCard;
|
/**
|
* 名称
|
*/
|
private String name;
|
/**
|
* 昵称
|
*/
|
private String nickName;
|
/**
|
* OpenID
|
*/
|
private String openId;
|
/**
|
* 手机号码
|
*/
|
private String phone;
|
/**
|
* 平台类型
|
*/
|
private String platform;
|
/**
|
* 平台来源 1-pad 2-小程序
|
*/
|
private String platSource;
|
/**
|
* 职业
|
*/
|
private String position;
|
/**
|
* 意向产品编码,用逗号隔开
|
*/
|
private String productCode;
|
/**
|
* 推荐人
|
*/
|
private String referee;
|
/**
|
* 备注
|
*/
|
private String remark;
|
/**
|
* 来源系统客户ID
|
*/
|
private String sourceCustomerId;
|
/**
|
* 子应用码
|
*/
|
private String subAppCode;
|
/**
|
* 中台用户唯一编码
|
*/
|
private String token;
|
/**
|
* UnionID
|
*/
|
private String unionId;
|
/**
|
* 小区
|
*/
|
private String uptown;
|
/**
|
* CMS账号
|
*/
|
private String userName;
|
/**
|
* 微信号
|
*/
|
private String weixin;
|
|
|
|
}
|