zjf
2023-03-06 392b76515f40376b6d36f40a114850ef63650384
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
//  PBRecordViewController.h
//  IphoneBIMe
//
//  Created by zjf on 2019/1/31.
//  Copyright © 2019 ProBIM. All rights reserved.
//
 
#import <UIKit/UIKit.h>
@class PBExamineListModel;
@class PBProjectModel;
@class PBRoleModel;
NS_ASSUME_NONNULL_BEGIN
 
@interface PBRecordViewController : UIViewController
@property (nonatomic, strong) NSDictionary *examineDetailDic;
@property (nonatomic, strong) PBExamineListModel *examineListModel;
@property (nonatomic, strong) PBProjectModel *projectModel;
@property (nonatomic, assign) RoleType roleType;
//@property (nonatomic, strong) NSMutableArray *recordListM;
@property (nonatomic, copy) void(^UpdateRecordCountBlock)(NSDictionary *detailDic);
@property (nonatomic, copy) void(^ModifyStateBlock)(NSString *flagStr);
@property (nonatomic, strong) PBRoleModel *roleModel;
@end
 
NS_ASSUME_NONNULL_END