package cn.iocoder.yudao.module.crm.api.customer.dto;
|
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
/**
|
* CRM 客户 Response DTO
|
*
|
* 提供给其它模块(如 ERP)使用
|
*
|
* @author 芋道源码
|
*/
|
@Data
|
public class CrmCustomerRespDTO {
|
|
/**
|
* 编号
|
*/
|
private Long id;
|
|
/**
|
* 客户名称
|
*/
|
private String name;
|
|
/**
|
* 手机
|
*/
|
private String mobile;
|
/**
|
* 电话
|
*/
|
private String telephone;
|
/**
|
* QQ
|
*/
|
private String qq;
|
/**
|
* wechat
|
*/
|
private String wechat;
|
/**
|
* email
|
*/
|
private String email;
|
|
/**
|
* 所在地
|
*/
|
private Integer areaId;
|
/**
|
* 详细地址
|
*/
|
private String detailAddress;
|
|
/**
|
* 所属行业
|
*/
|
private Integer industryId;
|
/**
|
* 客户等级
|
*/
|
private Integer level;
|
/**
|
* 客户来源
|
*/
|
private Integer source;
|
|
/**
|
* 负责人的用户编号
|
*/
|
private Long ownerUserId;
|
/**
|
* 成为负责人的时间
|
*/
|
private LocalDateTime ownerTime;
|
|
/**
|
* 锁定状态
|
*/
|
private Boolean lockStatus;
|
/**
|
* 成交状态
|
*/
|
private Boolean dealStatus;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
}
|