1234567891011121314151617181920212223 |
- //
- // FKCashCouponReform.h
- // FirstLink
- //
- // Created by ascii on 15/9/8.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "FKCouponViewModel.h"
- @interface FKCashCouponReform : NSObject
- + (NSString *)parseTotalCount:(NSDictionary *)json;
- + (NSString *)parseServerTime:(NSDictionary *)json;
- /**
- 解析活动卡列表
- */
- + (NSMutableArray *)parseCouponItems:(NSDictionary *)json;
- @end
|