| 123456789101112131415161718192021222324252627282930 |
- //
- // TableheaderView.h
- // Haishenghai-master
- //
- // Created by GG on 2019/1/5.
- // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface TableheaderView : UIView
- /** 设备名称 */
- @property (nonatomic,strong)UILabel *nameLabel;
- /** 设备图片 */
- @property (nonatomic,strong)UIImageView *image;
- /*运营商*/
- @property (nonatomic,strong)UILabel *detailLabel;
- /*编号*/
- @property (nonatomic,strong)UILabel *numberLabel;
- /*位置*/
- @property (nonatomic,strong)UILabel *locationLabel;
- /*详细位置*/
- @property (nonatomic,strong)UILabel *d_locationLabel;
- @property (nonatomic,strong)UILabel *stateLabel;
- @property (nonatomic,strong)UILabel *recordLabel;
- @property(nonatomic,strong)UILabel *gatewayLabel;
- @end
|