using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Zxd.Entity.Dncms { [Table("weworkexternalusertotal")] public class WeworkExternalUserTotal { public DateTime Ctime { get; set; } public int Deptid { get; set; } public int Eid { get; set; } public string? Appid { get; set; } public string? Userid { get; set; } /// /// 总好友数 /// public int? Total { get; set; } /// /// 新加微数 /// public int? Newsubscribe { get; set; } /// /// 工号去重 /// public int? Eidrepeattypenew { get; set; } /// /// 部门去重加微数 /// public int? Eidrepeattype1deptnew { get; set; } } }