namespace GxPress.Result.App.User { /// /// 用户数量 /// public class UserCountResult { /// /// 收件箱 /// /// public int InboxCount { get; set; } /// /// 通知未读数量 /// /// public int noticeCount { get; set; } /// /// 站内信未读数量 /// /// public int missiveCount { get; set; } /// /// 工作我的审批未读数量 /// /// public int FlowAuditUReadCount { get; set; } /// /// 工作我发起的未读数量 /// /// public int FlowSendUReadCount { get; set; } /// /// 工作抄送我的未读数量 /// /// public int FlowCcUReadCount { get; set; } /// /// 获取未待办工作 /// /// public int WaitHandleUFinishCount { get; set; } } }