// // DeveceListCell.h // Haishenghai-master // // Created by GG on 2019/1/10. // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved. // #import #import "deveceListModel.h" @interface DeveceListCell : UITableViewCell @property(nonatomic,strong)deveceListModel *model; /** 地址 */ @property(nonatomic,strong)UILabel *titleLabel; @property(nonatomic,strong)UILabel *stateLabel; /** 设备编号 */ @property(nonatomic,strong)UILabel *deveNumberLabel; /** 信号源 */ @property(nonatomic,strong)UILabel *signalLabel; /** 区域 */ @property(nonatomic,strong)UILabel *deplementLabel; /** 详细地址 */ @property(nonatomic,strong)UILabel *locationLabel; /** 安装位置 */ @property(nonatomic,strong)UILabel *d_lationLabel; @end