// // MessageTableCell.h // Haishenghai-master // // Created by GG on 2019/1/5. // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved. // #import @interface MessageTableCell : UITableViewCell /** 设备标题 */ @property(nonatomic,strong)UILabel *nameLabel; /** 图片 */ @property(nonatomic,strong)UIImageView *image; /** 地址 */ @property(nonatomic,strong)UILabel *locationLabel; /** 状态 */ @property(nonatomic,strong)UILabel *stateLabel; /** 编号 */ @property(nonatomic,strong)UILabel *numberLabel; /** 位置 */ @property(nonatomic,strong)UILabel *placeLabel; /** 时间 */ @property(nonatomic,strong)UILabel *timelabel; /** 详细地址 */ @property(nonatomic,strong)UILabel *detailLocationLabel; /**check */ @property(nonatomic,strong)UIButton *checkButton; @end