口袋优选

ZmzRequest.h 474B

123456789101112131415161718192021
  1. //
  2. // ZmzRequest.h
  3. // MZAFNetworking
  4. //
  5. // Created by CiHon-IOS2 on 16/9/30.
  6. // Copyright © 2016年 walkingzmz. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "ZmzAFNetworking.h"
  10. typedef void (^sendData)(id ServersData, BOOL isSuccess);
  11. @interface ZmzRequest : NSObject
  12. //获取首页列表
  13. - (void)getDateWithParams:(NSDictionary *)params WithDataBlock:(sendData)sendBlock;
  14. //获取展示列表
  15. -(void)getListDataBlock:(sendData)sendBlock;
  16. @end