// // CellModel.h // Ifish // // Created by ifish7-ios on 16/3/28. // Copyright © 2016年 imac. All rights reserved. // #import @interface CellModel : NSObject //定义cell中的图片; @property(nonatomic,copy) NSString *cellImage; //定义cell中的描述文字; @property(nonatomic,copy) NSString *cellDesc; @end