//
|
// MyDeviceStatusCell.h
|
// terminalMgr
|
//
|
// Created by WindShan on 2017/3/16.
|
// Copyright © 2017年 WindShan. All rights reserved.
|
//
|
|
#import "BaseTableViewCell.h"
|
#import "MyDeviceStatus.h"
|
|
@protocol SelCellDetailDelegate <NSObject>
|
|
@optional
|
|
- (void)didCellDetailSection:(MyDeviceStatus*)model;
|
|
@end
|
|
@interface MyDeviceStatusCell : BaseTableViewCell
|
|
@property(nonatomic, assign)id<SelCellDetailDelegate> delegate;
|
@property(nonatomic, strong) MyDeviceStatus* model;
|
|
/** 设置数据*/
|
- (void)setItemView:(MyDeviceStatus*)model;
|
@end
|