1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| //
| // PBSafetyModel.h
| // IphoneBIMe
| //
| // Created by ZhangJF on 2022/8/31.
| // Copyright © 2022 ProBIM. All rights reserved.
| //
|
| #import <Foundation/Foundation.h>
|
| NS_ASSUME_NONNULL_BEGIN
|
| @interface PBSafetyModel : NSObject
| @property (nonatomic, copy) NSString *MobileSafe_Name;//风险
| @property (nonatomic, copy) NSString *MobileSafe_Measure; //措施
| @end
|
| NS_ASSUME_NONNULL_END
|
|