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