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