单军华
2018-07-31 21d3023a9b7b6aff68c1170e345951396b1c6cfd
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
//
//  DeviceModel.h
//  screendisplay
//
//  Created by 单军华 on 2018/7/9.
//  Copyright © 2018年 单军华. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
@interface DeviceModel : NSObject
 
@property(nonatomic, strong) NSString * id;
@property(nonatomic, strong) NSString * name;
@property(nonatomic, strong) NSString * address;
@property(nonatomic, strong) NSString * longitude; //经度
@property(nonatomic, strong) NSString * latitude; //纬度
@property(nonatomic, strong) NSString * mac;
@property(nonatomic, strong) NSString * operateUserId;
@property(nonatomic, strong) NSString * state;// 0 正常 1 一级警报 2 二级警报 3 三级警报 4 维保
@property(nonatomic, strong) NSString * createTime;
@property(nonatomic, strong) NSString * deviceVersionId;
@property(nonatomic, strong) NSString * monitorPointId;
@property(nonatomic, strong) NSString * installTime;
@property(nonatomic, strong) NSString * isDelete;
@property(nonatomic, strong) NSString * professionId;
@property(nonatomic, strong) NSString * operateUser;
@property(nonatomic, strong) NSString * deviceVersion;
@property(nonatomic, strong) NSString * monitorPoint;
@property(nonatomic, strong) NSString * organizationIds;
@property(nonatomic, strong) NSString * profession;
@property(nonatomic, strong) NSString * device_name;
//"id": 2,
//"name": "昆山摩瑞尔2号机(5890)",
//"address": "江苏省苏州市昆山市Y309(东辉路)",
//"longitude": 120.988264,
//"latitude": 31.43073,
//"mac": "898602b8191630065890",
//"operateUserId": 5,
//"state": "4",
//"createTime": 1511854799000,
//"installTime": null,
//"monitorPointId": 4,
//"deviceVersionId": 1,
//"isDelete": "0",
//"professionId": 1,
//"operateUser": null,
//"deviceVersion": null,
//"monitorPoint": null,
//"organizationIds": null,
//"profession": null,
//"device_name": "昆山摩瑞尔2号机(5890)"
 
    
@end