using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Core.Domain.Dto.Zxd
{
public class ExternalUserTotalDto
{
///
/// 员工工号
///
public int Eid { get; set; }
///
/// 总好友数
///
public int? Total { get; set; }
///
/// 新加微数
///
public int? Newsubscribe { get; set; }
///
/// 工号去重
///
public int? Eidrepeattypenew { get; set; }
///
/// 部门去重加微数
///
public int? Eidrepeattype1deptnew { get; set; }
}
}