DeveceListCell.h 790 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // DeveceListCell.h
  3. // Haishenghai-master
  4. //
  5. // Created by GG on 2019/1/10.
  6. // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "deveceListModel.h"
  10. @interface DeveceListCell : UITableViewCell
  11. @property(nonatomic,strong)deveceListModel *model;
  12. /** 地址 */
  13. @property(nonatomic,strong)UILabel *titleLabel;
  14. @property(nonatomic,strong)UILabel *stateLabel;
  15. /** 设备编号 */
  16. @property(nonatomic,strong)UILabel *deveNumberLabel;
  17. /** 信号源 */
  18. @property(nonatomic,strong)UILabel *signalLabel;
  19. /** 区域 */
  20. @property(nonatomic,strong)UILabel *deplementLabel;
  21. /** 详细地址 */
  22. @property(nonatomic,strong)UILabel *locationLabel;
  23. /** 安装位置 */
  24. @property(nonatomic,strong)UILabel *d_lationLabel;
  25. @end