12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //
- // WorkNumberModel.h
- // smartRhino
- //
- // Created by tederen on 2019/11/22.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "BaseModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface WorkNumberModel : BaseModel
- /// 我发起的 - 待审批
- @property (nonatomic ,assign) NSInteger SubmittedCheckingCount;
- /// 我发起的 - 已审批
- @property (nonatomic ,assign) NSInteger SubmittedCheckedCount;
- /// 我审批的 - 待审批
- @property (nonatomic ,assign) NSInteger MyCheckedCount;
- /// 我审批的 - 已审批
- @property (nonatomic ,assign) NSInteger MyCheckingCount;
- /// 抄送我的 - 未读
- @property (nonatomic ,assign) NSInteger CcUnreadCount;
- /// 抄送我的全部
- @property (nonatomic ,assign) NSInteger CcAllCount;
- /**最新的未读数量******************************/
- /// 通知未读数量
- @property (nonatomic ,assign) NSInteger noticeCount;
- /// 站内信未读数量
- @property (nonatomic ,assign) NSInteger missiveCount;
- /// 工作我的审批未读数量
- @property (nonatomic ,assign) NSInteger FlowAuditUReadCount;
- /// 工作我发起的未读数量
- @property (nonatomic ,assign) NSInteger FlowSendUReadCount;
- /// 工作抄送我的未读数量
- @property (nonatomic ,assign) NSInteger FlowCcUReadCount;
- /// 统计nunber
- - (NSString *)allNumber;
- /// 统计通知未读数量
- - (NSString *)allNotifacationNumber;
- @end
- NS_ASSUME_NONNULL_END
|