| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // FireAlarmCell.h
- // Haishenghai-master
- //
- // Created by GG on 2019/1/10.
- // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FireNoticeModel.h"
- @interface FireAlarmCell : UITableViewCell
- @property(nonatomic,strong)FireNoticeModel *model;
- /** 设备标题 */
- @property(nonatomic,strong)UILabel *nameLabel;
- /** 知道按钮 */
- @property(nonatomic,strong)UIButton *sureBtn;
- /** 副标题 */
- @property(nonatomic,strong)UILabel *titleLabel;
- //区域名
- @property(nonatomic,strong)UILabel *deployLabel;
- //火警状态
- @property(nonatomic,strong)UILabel *typeLabel;
- //编号
- @property(nonatomic,strong)UILabel *numberLabel;
- //位置
- @property(nonatomic,strong)UILabel *locationLabel;
- //时间
- @property(nonatomic,strong)UILabel *timeLabel;
- //地址
- @property(nonatomic,strong)UILabel *adressLabel;
- @end
|