//
|
// PBCheckTaskViewController.h
|
// IphoneBIMe
|
//
|
// Created by zjf on 2020/8/18.
|
// Copyright © 2020 ProBIM. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
|
NS_ASSUME_NONNULL_BEGIN
|
@class PBProjectModel;
|
@class PBExamineListModel;
|
@interface PBCheckTaskViewController : UIViewController
|
@property (nonatomic, strong) PBProjectModel *projectModel;
|
@property (nonatomic, assign) BOOL isAddExamine;
|
@property (nonatomic, strong) PBExamineListModel *examineListModel;
|
@property (nonatomic, strong) NSDictionary *examineListDict;
|
@property (nonatomic, strong) NSArray *stateArr;
|
@property (nonatomic, strong) NSArray *levelArr;
|
@property (nonatomic, strong) NSArray *typeArr;
|
@end
|
|
NS_ASSUME_NONNULL_END
|