TableheaderView.h 789 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // TableheaderView.h
  3. // Haishenghai-master
  4. //
  5. // Created by GG on 2019/1/5.
  6. // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TableheaderView : UIView
  10. /** 设备名称 */
  11. @property (nonatomic,strong)UILabel *nameLabel;
  12. /** 设备图片 */
  13. @property (nonatomic,strong)UIImageView *image;
  14. /*运营商*/
  15. @property (nonatomic,strong)UILabel *detailLabel;
  16. /*编号*/
  17. @property (nonatomic,strong)UILabel *numberLabel;
  18. /*位置*/
  19. @property (nonatomic,strong)UILabel *locationLabel;
  20. /*详细位置*/
  21. @property (nonatomic,strong)UILabel *d_locationLabel;
  22. @property (nonatomic,strong)UILabel *stateLabel;
  23. @property (nonatomic,strong)UILabel *recordLabel;
  24. @property(nonatomic,strong)UILabel *gatewayLabel;
  25. @end