using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using Volo.Abp.Domain.Entities.Auditing;
|
using Volo.Abp;
|
using LifePayment.Domain.LifePay;
|
using LifePayment.Domain.Shared;
|
using LifePayment.Domain.Models;
|
|
namespace LifePayment.Domain
|
{
|
/// <summary>
|
/// 渠道咨询
|
/// </summary>
|
public class LifePayChannelConsultation : FullAuditedEntity<Guid>, IDataUserFilter
|
{
|
/// <summary>
|
/// 用户Id
|
/// </summary>
|
public Guid? UserId { get; set; }
|
|
/// <summary>
|
/// 推广员
|
/// </summary>
|
public Guid? PromoterId { get; set; }
|
|
/// <summary>
|
/// 推广员
|
/// </summary>
|
public LifePayPromoter Promoter { get; set; }
|
|
/// <summary>
|
/// 咨询人
|
/// </summary>
|
public string Name { get; set; }
|
|
/// <summary>
|
/// 代理类型
|
/// </summary>
|
public LifePayChannelAgentType AgentType { get; set; }
|
|
/// <summary>
|
/// 联系方式
|
/// </summary>
|
public string PhoneNumber { get; set; }
|
|
/// <summary>
|
/// 公司名称
|
/// </summary>
|
public string CompanyName { get; set; }
|
|
/// <summary>
|
/// 客户资源
|
/// </summary>
|
public string CustomerResources { get; set; }
|
|
/// <summary>
|
/// 回访状态
|
/// </summary>
|
public LifePayChannelConsultationFollowupStatus FollowupStatus { get; set; }
|
|
/// <summary>
|
/// 最近回访
|
/// </summary>
|
public DateTime? LastFollowupTime { get; set; }
|
|
/// <summary>
|
/// 回访记录
|
/// </summary>
|
public string FollowupRemark { get; set; }
|
}
|
|
/// <summary>
|
/// 渠道咨询回访
|
/// </summary>
|
public class LifePayChannelConsultationFollowup : FullAuditedEntity<Guid>, IDataUserFilter
|
{
|
/// <summary>
|
/// 渠道咨询Id
|
/// </summary>
|
public Guid ChannelConsultationId { get; set; }
|
|
/// <summary>
|
/// 回访状态
|
/// </summary>
|
public LifePayChannelConsultationFollowupStatus FollowupStatus { get; set; }
|
|
/// <summary>
|
/// 回访记录
|
/// </summary>
|
public string FollowupRemark { get; set; }
|
}
|
}
|