Nenhuma Descrição

PageHeader.h 530B

12345678910111213141516171819202122
  1. //
  2. // PageResponseInfo.h
  3. // FirstLink
  4. //
  5. // Created by unicode on 14-11-10.
  6. // Copyright (c) 2014年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface PageHeader : NSObject
  10. @property (nonatomic, strong) NSString *pageSize;
  11. @property (nonatomic, strong) NSString *index; // 服务器返回上数据
  12. @property (nonatomic, strong) NSString *anchorID;
  13. @property (nonatomic, strong) NSString *startRow;
  14. + (PageHeader*)defaultPageHeader;
  15. + (PageHeader*)parserHeader:(NSDictionary*)json;
  16. @end