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