using System; namespace AppletMvcService.Models { /// /// 客户列表 /// 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; } /// /// 资源ID /// public string resid { get; set; } } }