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