using Edu.Model.Entity.Customer; using System; using System.Collections.Generic; using System.Text; namespace Edu.Model.ViewModel.Customer { /// /// 学员跟进扩展实体类 /// public class RB_Student_Follow_Extend : RB_Student_Follow { /// /// 学员编号【查询使用】 /// public string QStuIds { get; set; } /// /// 月份 /// public string MonthStr { get; set; } /// /// 学员数量 /// public int StuNum { get; set; } /// /// 开始时间 /// public string STime { get; set; } /// /// 结束时间 /// public string ETime { get; set; } /// /// 有效数据量 (第一次跟进且不等于流失) /// public int FollowCount { get; set; } /// /// 单资源回访平均数 /// public decimal FollowEffectiveCount { get; set; } /// /// 单资源回访平均数~~~就是一条资源跟进了几次 【平均】 /// public decimal AgFollow { get; set; } } }