//
|
// PBArtifactsViewController.h
|
// IphoneBIMe
|
//
|
// Created by zjf on 2020/9/11.
|
// Copyright © 2020 ProBIM. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
@class PBExamineAddModel;
|
@class PBProjectModel;
|
//@class PBETaskInfoModel;
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface PBTaskViewController : UIViewController
|
@property (nonatomic, strong) PBProjectModel *projectModel;
|
//@property (nonatomic, strong) NSString *structureId;
|
@property (nonatomic, strong) PBExamineAddModel *examineAddModel;
|
//@property (nonatomic, strong) PBETaskInfoModel *taskInfoModel;
|
@property (nonatomic, assign) BOOL isOntPage;
|
@property (nonatomic, strong) NSArray *tasks;
|
|
@property (nonatomic, strong) NSMutableArray *selectList;
|
@end
|
|
NS_ASSUME_NONNULL_END
|