TerminalListCell.h 889 B

123456789101112131415161718192021222324252627
  1. //
  2. // TerminalListCell.h
  3. // LN_School
  4. //
  5. // Created by EchoShacolee on 2017/8/3.
  6. // Copyright © 2017年 Danson. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TerminalListCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UILabel *carNum;
  11. @property (weak, nonatomic) IBOutlet UILabel *status;
  12. @property (weak, nonatomic) IBOutlet UILabel *type;
  13. @property (weak, nonatomic) IBOutlet UILabel *registerLab;
  14. @property (weak, nonatomic) IBOutlet UIButton *orbitBtn;
  15. @property (weak, nonatomic) IBOutlet UIButton *sendMesssage;
  16. @property (weak, nonatomic) IBOutlet UIButton *cancleAlarmBtn;
  17. @property (weak, nonatomic) IBOutlet UIButton *VideoBtn;
  18. @property(nonatomic,strong)NSDictionary *dic;
  19. @property(nonatomic,copy)MyBlockType clickBlock;//1轨迹回放,2发送消息,3解除警报,4命令录像
  20. +(instancetype)cellForTableView:(UITableView *)tableView;
  21. @end