DeveceTableCell.h 637 B

1234567891011121314151617181920212223
  1. //
  2. // DeveceTableCell.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. #import "deveceListModel.h"
  10. //@class deveceListModel;
  11. @interface DeveceTableCell : UITableViewCell
  12. //提供一个属性
  13. @property(nonatomic,strong) deveceListModel *listModel;
  14. @property (nonatomic,strong) UILabel *titleLabel;
  15. @property (nonatomic,strong) UILabel *nameLabel;
  16. @property (nonatomic,strong) UILabel *numberLabel;
  17. @property (nonatomic,strong) UILabel *locationLabel;
  18. @property (nonatomic,strong) UILabel *stateLabel;
  19. @end