DetailTableViewCell.h 695 B

12345678910111213141516171819202122232425262728
  1. //
  2. // DetailTableViewCell.h
  3. // Haishenghai-master
  4. //
  5. // Created by GG on 2019/1/18.
  6. // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface DetailTableViewCell : UITableViewCell
  10. @property(nonatomic,strong)UILabel *timeLabel;
  11. @property(nonatomic,strong)UIImageView *pointImg;
  12. @property(nonatomic,strong)UIView *line1;
  13. @property(nonatomic,strong)UIView *line2;
  14. @property(nonatomic,strong)UIImageView *bgImageView;
  15. @property(nonatomic,strong)UILabel *stateLabel;
  16. @property(nonatomic,strong)UILabel *signalLabel;
  17. @property(nonatomic,strong)UILabel *voltageLabel;
  18. @property(nonatomic,strong)UILabel *tempLabel;
  19. @end