//
//  AddPeopleToGongWenCell.h
//  smartRhino
//
//  Created by tederen on 2019/11/2.
//  Copyright © 2019 tederen. All rights reserved.
//

#import "TDTableViewCell.h"

NS_ASSUME_NONNULL_BEGIN
/// 添加抄送人代理
@protocol  AddPeopleToGongWenCellDelegate <NSObject>

- (void)addLookUpPeopleSuccess:(nullable void (^)( id _Nullable responseObject)) success  failure:(nullable void (^)(NSError *error))failure;

@end
typedef void(^AddPeopleTouchBlock)(void);
@interface AddPeopleToGongWenCell : TDTableViewCell

@property (nonatomic, copy) AddPeopleTouchBlock backBlock;
@property (weak, nonatomic) IBOutlet UILabel *namelab;
@property (weak, nonatomic) IBOutlet UIImageView *haveNeedImageView;
@property (weak, nonatomic) IBOutlet UICollectionView *collectView;
@property (nonatomic, strong) NSMutableArray *approvalSection;
@property (nonatomic,weak) id<AddPeopleToGongWenCellDelegate>delegate;

@end

NS_ASSUME_NONNULL_END