WorkNumberModel.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //
  2. // WorkNumberModel.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/22.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "BaseModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface WorkNumberModel : BaseModel
  11. /// 我发起的 - 待审批
  12. @property (nonatomic ,assign) NSInteger SubmittedCheckingCount;
  13. /// 我发起的 - 已审批
  14. @property (nonatomic ,assign) NSInteger SubmittedCheckedCount;
  15. /// 我审批的 - 待审批
  16. @property (nonatomic ,assign) NSInteger MyCheckedCount;
  17. /// 我审批的 - 已审批
  18. @property (nonatomic ,assign) NSInteger MyCheckingCount;
  19. /// 抄送我的 - 未读
  20. @property (nonatomic ,assign) NSInteger CcUnreadCount;
  21. /// 抄送我的全部
  22. @property (nonatomic ,assign) NSInteger CcAllCount;
  23. /**最新的未读数量******************************/
  24. /// 通知未读数量
  25. @property (nonatomic ,assign) NSInteger noticeCount;
  26. /// 站内信未读数量
  27. @property (nonatomic ,assign) NSInteger missiveCount;
  28. /// 工作我的审批未读数量
  29. @property (nonatomic ,assign) NSInteger FlowAuditUReadCount;
  30. /// 工作我发起的未读数量
  31. @property (nonatomic ,assign) NSInteger FlowSendUReadCount;
  32. /// 工作抄送我的未读数量
  33. @property (nonatomic ,assign) NSInteger FlowCcUReadCount;
  34. /// 统计nunber
  35. - (NSString *)allNumber;
  36. /// 统计通知未读数量
  37. - (NSString *)allNotifacationNumber;
  38. @end
  39. NS_ASSUME_NONNULL_END