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