2024-01-23 16:42:27 +08:00

131 lines
2.2 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.ics.admin.domain;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ics.common.core.domain.BaseEntity;
import com.ics.system.domain.User;
import lombok.Data;
import java.util.Date;
/**
* 线索管理对象 ics_clue
*
* @author ics
* @date 2021-03-23
*/
@Data
@TableName("ics_clue")
public class Clue extends BaseEntity<Clue> {
private static final long serialVersionUID = 1L;
/**
* 主题
*/
private String clueName;
/**
* 线索来源:0-现场接待1-主动电访2-邮件3-客户来电4-短信5-上门拜访
*/
private String source;
/**
* 渠道分类:0-中价公司1-广告2-合作推荐3-自开发渠道
*/
private String channelCategory;
/**
* 渠道名称
*/
private String channelName;
/**
* 详细描述
*/
private String remark;
/**
* 客户名称
*/
private String customerName;
/**
* 状态0-激活1-已关闭2-已转客户
*/
private String customerStatus;
/**
* 分派时间
*/
private Date assignmentTime;
/**
* 分派状态:(0-待分配1-已分派)
*/
private String assignmentStatus;
/**
* 对接人id
*/
private Long userId;
/**
* 关闭原因:0-电话打不通1-客户暂无需求2—客户需求已经满足3—重复线索4-其他
*/
private String closeReason;
/**
* 关闭说明
*/
private String closeExplain;
/**
* 客户类型(0-公司1-个人)
*/
private String customerType;
/**
* 纳税人识别号
*/
private String creditNo;
/**
* 所属行业
*/
private String sector;
/**
* 联系人
*/
private String contacts;
/**
* 联系电话
*/
private String phone;
/**
* 邮箱
*/
private String email;
/**
* 通讯地址
*/
private String mailAddress;
/**
* 邮编
*/
private String postalCode;
/**
* 用户
*/
private User user;
@TableField(exist = false)
private ApplyRoom applyRoom;
}