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
//
// ICRQestion.h
// XFFruit
//
// Created by Lili Wang on 15/5/29.
// Copyright (c) 2015年 Xummer. All rights reserved.
//
#import "IBTModel.h"
typedef NS_ENUM(NSUInteger, ICRQestionType) {
kICRQestionTypeSingleSel = 0,
kICRQestionTypeMultipleSel,
kICRQestionTypeReply,
kICRQestionTypeScore,
kICRQestionTypeStoreInv,
kICRQestionTypeSpeciesInv,
kICRQestionTypeStarNum,
};
@interface ICRQuestion : IBTModel
@property (copy, nonatomic) NSString *qID;
@property (assign, nonatomic) NSUInteger lineNo;
@property (assign, nonatomic) NSInteger type;
@property (copy, nonatomic) NSString *category;
@property (copy, nonatomic) NSString *title;
@property (assign, nonatomic) NSUInteger star;
@property (assign, nonatomic) NSUInteger scoreFrom;
@property (assign, nonatomic) NSUInteger scoreTo;
@property (assign, nonatomic) BOOL writingReply;
@property (assign, nonatomic) BOOL pictureReply;
@property (assign, nonatomic) BOOL recordReply;
@property (strong, nonatomic) NSArray *details;
@property (strong, nonatomic) NSArray *scoreType;
@end