CrmClientDataImportVo.java 1.43 KB
Newer Older
邓实川 committed
1 2 3 4 5 6 7 8 9 10 11
/**  
* Title: CrmClientDataImportVo.java 
* Description: 
* @author dsc  
* @date 2020年6月12日  
* @version 1.0  
*/
package cn.timer.api.dto.crm;

import java.io.Serializable;

ilal committed
12
import io.swagger.annotations.ApiModelProperty;
邓实川 committed
13 14 15 16 17 18 19 20
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * Title: CrmClientDataImportVo.java
 * 
21
 * @Description: 客户导入
邓实川 committed
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
 * @author dsc
 * @date 2020年6月12日
 * @version 1.0
 */
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class CrmClientDataImportVo implements Serializable {

	private static final long serialVersionUID = 3241644321635711815L;
	// 客户名
	private String clientName;
	// 组
	private String belongGroupName;
	// 行业
	private String industryName;
	// 客户类型
	private String clientTypeName;
	// 手机号
	private String clientCellphone;
	// 客户座机
	private String clientTelephone;
	// 客户官网
	private String clientUrl;
	// 邮箱
	private String clientEmail;
	// 详细地址
	private String address;

ilal committed
52 53 54 55 56 57
	//微信
	private String wechat;
	
	//产品
	private String product;
	
邓实川 committed
58 59 60 61 62 63 64 65 66
	// 联系人信息
	private String linkName;
	private String cellphone;
	private String company;
	private String gender;
	private String position;
	private String telephone;
	private String email;
	private String linkAddress;
ilal committed
67 68
	
	private String followuprecord;
邓实川 committed
69 70

}