| 1234567891011121314151617181920212223 |
- //
- // DeveceTableCell.h
- // Haishenghai-master
- //
- // Created by GG on 2019/1/5.
- // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "deveceListModel.h"
- //@class deveceListModel;
- @interface DeveceTableCell : UITableViewCell
- //提供一个属性
- @property(nonatomic,strong) deveceListModel *listModel;
- @property (nonatomic,strong) UILabel *titleLabel;
- @property (nonatomic,strong) UILabel *nameLabel;
- @property (nonatomic,strong) UILabel *numberLabel;
- @property (nonatomic,strong) UILabel *locationLabel;
- @property (nonatomic,strong) UILabel *stateLabel;
- @end
|