1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| //
| // OpenApiInfo.m
| // LCOpenSDKDemo
| //
| // Created by 韩燕瑞 on 2020/7/11.
| // Copyright © 2020 lechange. All rights reserved.
| //
|
| #import "OpenApiInfo.h"
|
| @implementation Device
|
| + (NSDictionary *)mj_objectClassInArray{
| return @{@"channels" : @"Channel"};
| }
|
| @end
|
| @implementation Channel
|
|
| @end
|
|