JLChen
2021-04-30 a5247b61d585627a1a7b1e1f35f34de9f0af9fba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
//
//  Copyright © 2020 dahua. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface LCAddDeviceModel : NSObject
 
@end
 
@interface LCProductDetailModel : NSObject
 
///产品市场型号
@property (nonatomic, strong) NSString *deviceModelName;
///产品正视图地址
@property (nonatomic, strong) NSString *deviceImageURI;
 
@end
 
@interface LCProductModel : NSObject
///产品大类
@property (nonatomic, strong) NSString *deviceType;
///产品列表
@property (nonatomic, strong) NSArray<LCProductDetailModel *> *deviceModelList;
 
@end
 
@interface LCOMSImageModel : NSObject
 
///图片名称
@property (nonatomic, strong) NSString *imageName;
///图片URL
@property (nonatomic, strong) NSString *imageUrl;
 
@end
 
@interface LCOMSIntroductionModel : NSObject
 
///引导提示名称
@property (nonatomic, strong) NSString *introductionName;
///引导提示文案
@property (nonatomic, strong) NSString *introductionContent;
 
@end
 
@interface LCOMSModel : NSObject
 
///引导图列表
@property (nonatomic, strong) NSArray<LCOMSImageModel *> *images;
 
///引导文案
@property (nonatomic, strong) NSArray<LCOMSIntroductionModel *> *introductions;
 
-(NSString *)findImageByName:(NSString *)name;
 
-(NSString *)findContentByName:(NSString *)name;
 
@end
 
NS_ASSUME_NONNULL_END