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