// // JHTableDataRowModel.h // JHChartDemo // // Created by 简豪 on 16/8/25. // Copyright © 2016年 JH. All rights reserved. // #import #import @interface JHTableDataRowModel : NSObject /** * The maximum number of columns in the model. */ @property (nonatomic, assign) NSInteger maxCount; /** * Data Source Array */ @property (nonatomic, strong) NSArray * dataArr; @end