FireAlarmCell.h 883 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // FireAlarmCell.h
  3. // Haishenghai-master
  4. //
  5. // Created by GG on 2019/1/10.
  6. // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FireNoticeModel.h"
  10. @interface FireAlarmCell : UITableViewCell
  11. @property(nonatomic,strong)FireNoticeModel *model;
  12. /** 设备标题 */
  13. @property(nonatomic,strong)UILabel *nameLabel;
  14. /** 知道按钮 */
  15. @property(nonatomic,strong)UIButton *sureBtn;
  16. /** 副标题 */
  17. @property(nonatomic,strong)UILabel *titleLabel;
  18. //区域名
  19. @property(nonatomic,strong)UILabel *deployLabel;
  20. //火警状态
  21. @property(nonatomic,strong)UILabel *typeLabel;
  22. //编号
  23. @property(nonatomic,strong)UILabel *numberLabel;
  24. //位置
  25. @property(nonatomic,strong)UILabel *locationLabel;
  26. //时间
  27. @property(nonatomic,strong)UILabel *timeLabel;
  28. //地址
  29. @property(nonatomic,strong)UILabel *adressLabel;
  30. @end