lpw
2021-01-12 e198923baf7b4052babfe7b8ac673f38b8f750e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//
//  GHWSDKGift.h
//  GHWSdkUI
//
//  Created by wuyx on 15/7/16.
//  Copyright (c) 2015年 GHW-T-01. All rights reserved.
//
 
#import <Foundation/Foundation.h>
/*!
 @discussion WAFBObject
 - - -
 */
@interface WAFBObject : NSObject<NSCopying>
/*!
 @abstract ID
 */
@property(nonatomic,copy)NSString* ID;
/*!
 @abstract type
 */
@property(nonatomic,copy)NSString* type;
/*!
 @abstract title
 */
@property(nonatomic,copy)NSString* title;
/*!
 @abstract imageUrls
 */
@property(nonatomic,copy)NSString* imageUrls;
/*!
 @abstract created_time
 */
@property(nonatomic,copy)NSString* created_time;
/*!
 @abstract oDescription
 */
@property(nonatomic,copy)NSString* oDescription;
/*!
 @abstract is_scraped
 */
@property(nonatomic)Boolean is_scraped;
/*!
 @abstract data
 */
@property(nonatomic,copy)NSDictionary* data;
+(WAFBObject*)parserWithResultDict:(NSDictionary*)dict;
@end