using System; namespace GxPress.Result.Job { /// /// /// public class JobResult { } /// /// 话题 /// public class JobTopicResult { /// /// 话题id /// /// public int Id { get; set; } /// /// GUID /// /// public string GuId { get; set; } /// /// 话题标题 /// /// public string Title { get; set; } /// /// 话题类容 /// /// public string Content { get; set; } /// /// 用户名Id /// /// public int UserId { get; set; } /// /// 用户名 /// /// public string Name { get; set; } /// /// 头像 /// /// public string AvatarUrl { get; set; } /// /// 创建时间 /// /// public DateTime? CreatedDate { get; set; } /// /// /// /// public int TopicAddresseeId { get; set; } } /// /// 通知 /// public class JobNoticeResult { /// /// 话题id /// /// public int Id { get; set; } /// /// GUID /// /// public string GuId { get; set; } /// /// 话题标题 /// /// public string Title { get; set; } /// /// 话题类容 /// /// public string Content { get; set; } /// /// 用户名Id /// /// public int UserId { get; set; } /// /// 用户名 /// /// public string Name { get; set; } /// /// 头像 /// /// public string AvatarUrl { get; set; } /// /// 创建时间 /// /// public DateTime? CreatedDate { get; set; } /// /// 中间件 /// /// public int MiddleId { get; set; } } /// /// 站内信 /// public class JobMissiveResult { /// /// 话题id /// /// public int Id { get; set; } /// /// GUID /// /// public string GuId { get; set; } /// /// 话题标题 /// /// public string Title { get; set; } /// /// 话题类容 /// /// public string Content { get; set; } /// /// 用户名Id /// /// public int UserId { get; set; } /// /// 用户名 /// /// public string Name { get; set; } /// /// 头像 /// /// public string AvatarUrl { get; set; } /// /// 创建时间 /// /// public DateTime? CreatedDate { get; set; } /// /// 中间件 /// /// public int MiddleId { get; set; } } /// /// 通讯录 /// public class JobUserResult { /// /// 话题id /// /// public int Id { get; set; } /// /// GUID /// /// public string GuId { get; set; } /// /// 用户名 /// /// public string Name { get; set; } /// /// 头像 /// /// public string AvatarUrl { get; set; } } /// /// 聊天 /// public class JobChatResult { /// /// 聊天窗体id /// /// public int Id { get; set; } /// /// GUID /// /// public string GuId { get; set; } /// /// 聊天标题 /// /// public string Title { get; set; } /// /// 用户名Id /// /// public int UserId { get; set; } /// /// 用户名 /// /// public string Name { get; set; } /// /// 头像 /群头像 /// /// public string AvatarUrl { get; set; } /// /// 创建时间 /// /// public DateTime? CreatedDate { get; set; } /// /// 中间件 /// /// public int MiddleId { get; set; } /// /// 环信ID /// /// public string ImId { get; set; } /// /// 聊天类型 1 单聊 2群聊 /// /// public int ChatType { get; set; } /// /// 群聊用到对应哪个用户 /// public int ToUserId { get; set; } } /// /// 站内信 /// public class JobGroupResult { /// /// 小组id /// /// public int Id { get; set; } /// /// GUID /// /// public string GuId { get; set; } /// /// 话题标题 /// /// public string Title { get; set; } /// /// 话题类容 /// /// public string Content { get; set; } /// /// 用户名Id /// /// public int UserId { get; set; } /// /// 用户名 /// /// public string Name { get; set; } /// /// 头像 /// /// public string AvatarUrl { get; set; } /// /// 创建时间 /// /// public DateTime? CreatedDate { get; set; } /// /// 中间件 /// /// public int MiddleId { get; set; } } }