//
//  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 WaitHandleUFinishCount;
/**最新的未读数量******************************/
/// 通知未读数量
@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;
/// 工作抄送我的未读数量
@property (nonatomic ,assign) NSInteger messageUnCount;

/// 统计nunber
- (NSInteger )allNumber;

@end

NS_ASSUME_NONNULL_END