DeviceListTableViewCell.h 866 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // DeviceListTableViewCell.h
  3. // FunSDKDemo
  4. //
  5. // Created by Levi on 2018/5/18.
  6. // Copyright © 2018年 Levi. All rights reserved.
  7. //
  8. /**
  9. 设备列表Cell
  10. */
  11. #import <UIKit/UIKit.h>
  12. @interface DeviceListTableViewCell : UITableViewCell
  13. //设备类型图片
  14. @property (nonatomic, strong) UIImageView *devImageV;
  15. //设备名称Lab
  16. @property (nonatomic, strong) UILabel *devName;
  17. //设备类型:
  18. @property (nonatomic, strong) UILabel *devType;
  19. //设备类型获取填充Lab
  20. @property (nonatomic, strong) UILabel *devTypeLab;
  21. //设备SN:
  22. @property (nonatomic, strong) UILabel *devSN;
  23. //设备SN:获取填充Lab
  24. @property (nonatomic, strong) UILabel *devSNLab;
  25. //设备在线状态
  26. @property (nonatomic, strong) UIImageView *onlineState;
  27. //设备在线状态
  28. - (void)setDeviceState:(int)state;
  29. //设备睡眠状态
  30. - (void)setSleepType:(int)type;
  31. @end