using System; using System.Collections.Generic; namespace WX.CRM.Model.MAP { public class UserGroupView { public decimal GroupId { get; set; } public string GroupName { get; set; } public decimal GroupType { get; set; } public decimal? SaleUserEid { get; set; } public string AccountNum { get; set; } public List UserGroupList { get; set; } } public class UserGroup { public string AccountNum { get; set; } public decimal GroupId { get; set; } public decimal SaleUserEid { get; set; } public string OpenId { get; set; } public string NickName { get; set; } } public class CustoemrDetail { /// /// 连接ID /// public string ConnectionId { get; set; } /// /// 用户ID /// public string OpenId { get; set; } /// /// 用户名 /// public string NickName { get; set; } /// /// 用户部门 /// public string HeaderUrl { get; set; } public string Remarks { get; set; } /// /// 登录时间 /// public DateTime LoginTime { get; set; } /// /// 客户最后回复时间 /// public DateTime ChatTime { get; set; } /// /// 相差小时 /// public int Hours { get; set; } /// /// 关注状态 /// public int subscribe { get; set; } } }