//
|
// 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
|