112 lines
1.9 KiB
Java
112 lines
1.9 KiB
Java
|
|
package com.klp.domain;
|
|||
|
|
|
|||
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|||
|
|
import com.klp.common.core.domain.BaseEntity;
|
|||
|
|
import lombok.Data;
|
|||
|
|
import lombok.EqualsAndHashCode;
|
|||
|
|
|
|||
|
|
import java.util.Date;
|
|||
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* CRM 客户对象 wms_customer
|
|||
|
|
*
|
|||
|
|
* @author Joshi
|
|||
|
|
* @date 2025-08-12
|
|||
|
|
*/
|
|||
|
|
@Data
|
|||
|
|
@EqualsAndHashCode(callSuper = true)
|
|||
|
|
@TableName("wms_customer")
|
|||
|
|
public class WmsCustomer extends BaseEntity {
|
|||
|
|
|
|||
|
|
private static final long serialVersionUID=1L;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 编号,主键自增
|
|||
|
|
*/
|
|||
|
|
@TableId(value = "customer_id")
|
|||
|
|
private Long customerId;
|
|||
|
|
/**
|
|||
|
|
* 客户名称
|
|||
|
|
*/
|
|||
|
|
private String name;
|
|||
|
|
/**
|
|||
|
|
* 跟进状态
|
|||
|
|
*/
|
|||
|
|
private Integer followUpStatus;
|
|||
|
|
/**
|
|||
|
|
* 最后跟进时间
|
|||
|
|
*/
|
|||
|
|
private Date contactLastTime;
|
|||
|
|
/**
|
|||
|
|
* 最后跟进内容
|
|||
|
|
*/
|
|||
|
|
private String contactLastContent;
|
|||
|
|
/**
|
|||
|
|
* 下次联系时间
|
|||
|
|
*/
|
|||
|
|
private Date contactNextTime;
|
|||
|
|
/**
|
|||
|
|
* 负责人的用户编号
|
|||
|
|
*/
|
|||
|
|
private Long ownerUserId;
|
|||
|
|
/**
|
|||
|
|
* 成为负责人的时间
|
|||
|
|
*/
|
|||
|
|
private Date ownerTime;
|
|||
|
|
/**
|
|||
|
|
* 成交状态
|
|||
|
|
*/
|
|||
|
|
private Long dealStatus;
|
|||
|
|
/**
|
|||
|
|
* 手机
|
|||
|
|
*/
|
|||
|
|
private String mobile;
|
|||
|
|
/**
|
|||
|
|
* 电话
|
|||
|
|
*/
|
|||
|
|
private String telephone;
|
|||
|
|
/**
|
|||
|
|
* QQ
|
|||
|
|
*/
|
|||
|
|
private String qq;
|
|||
|
|
/**
|
|||
|
|
* 微信
|
|||
|
|
*/
|
|||
|
|
private String wechat;
|
|||
|
|
/**
|
|||
|
|
* 邮箱
|
|||
|
|
*/
|
|||
|
|
private String email;
|
|||
|
|
/**
|
|||
|
|
* 地区编号
|
|||
|
|
*/
|
|||
|
|
private Long areaId;
|
|||
|
|
/**
|
|||
|
|
* 详细地址
|
|||
|
|
*/
|
|||
|
|
private String detailAddress;
|
|||
|
|
/**
|
|||
|
|
* 所属行业
|
|||
|
|
*/
|
|||
|
|
private Long industryId;
|
|||
|
|
/**
|
|||
|
|
* 客户等级
|
|||
|
|
*/
|
|||
|
|
private Long level;
|
|||
|
|
/**
|
|||
|
|
* 客户来源
|
|||
|
|
*/
|
|||
|
|
private Long source;
|
|||
|
|
/**
|
|||
|
|
* 备注
|
|||
|
|
*/
|
|||
|
|
private String remark;
|
|||
|
|
/**
|
|||
|
|
* 是否删除
|
|||
|
|
*/
|
|||
|
|
@TableLogic
|
|||
|
|
private Long delFlag;
|
|||
|
|
|
|||
|
|
}
|