// // UseStorageCell.h // IBOSSmini // // Created by ssl on 2018/3/1. // Copyright © 2018年 elongtian. All rights reserved. // #import #import "UseStorageModel.h" @protocol UseStorageCellDelegate -(void)update:(int) position flag:(int) flag text:(NSString *) str; @end @interface UseStorageCell : UITableViewCell @property (nonatomic,assign) NSInteger position; @property(nonatomic,weak) id cellDelegate; - (void)parseEarnestInfo:(UseStorageModel *) model; @end