//
|
// 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
|