zhengyiming
2025-06-09 758a83d713c7212175fc06ce498d3b5ac1430872
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
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;
 
namespace LifePayment.Domain.LifePay
{
    /// <summary>
    /// 推广员
    /// </summary>
    public class LifePayPromoter : FullAuditedEntity<Guid>, IDataUserFilter
    {
        public LifePayPromoter()
        {
            ChannelConsultations = new HashSet<LifePayChannelConsultation>();
        }
 
        /// <summary>
        /// 用户Id
        /// </summary>
        public Guid? UserId { get; set; }
 
        /// <summary>
        /// ID
        /// </summary>
        public string IdNumber { get; set; }
 
        /// <summary>
        /// 推广员
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 联系方式
        /// </summary>
        public string PhoneNumber { get; set; }
 
        /// <summary>
        /// 点击数
        /// </summary>
        public int ClickCount { get; set; }
 
        /// <summary>
        /// 申请数
        /// </summary>
        public int ApplyCount { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        public string Remark { get; set; }
 
        /// <summary>
        /// 渠道咨询
        /// </summary>
        public ICollection<LifePayChannelConsultation> ChannelConsultations { get; set; }
    }
}