sunpengfei
2025-06-16 eccd091cfc8eaf38e7251f170d6f683a152e9ef5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
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; }
    }
}