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
49
50
51
52
53
54
55
56
//
// QuestionModel.h
// redstar
//
// Created by admin on 15/11/9.
// Copyright © 2015年 ZWF. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface QuestionModel : NSObject
@property (nonatomic, strong) NSArray *attachments;
@property (nonatomic, strong) NSString *category;//唯一标识
@property (nonatomic, strong) NSArray *comments;//问题分类名称
@property (nonatomic, strong) NSString *content; //问题内容
@property (nonatomic, strong) NSString *create_id; //
@property (nonatomic, strong) NSString *create_operName; //
@property (nonatomic, strong) NSString *create_time;//
@property (nonatomic, strong) NSString *enterprise;//
@property (nonatomic, strong) NSString *feedback;//问题反馈
@property (nonatomic, strong) NSString *group;//专业组名称
@property (nonatomic, assign) BOOL hotspot; // 热点问题
@property (nonatomic, strong) NSString *lastModify_id;//
@property (nonatomic, strong) NSString *lastModify_operName;//
@property (nonatomic, strong) NSString *lastModify_time;//
@property (nonatomic, assign) int likeCount; // 点赞数
@property (nonatomic, assign) BOOL myLike;
@property (nonatomic, strong) NSString *resolveTime;//pictureIds
@property (nonatomic, strong) NSString *resolveUser_code;
@property (nonatomic, strong) NSString *resolveUser_name;
@property (nonatomic, strong) NSString *resolveUser_uuid;//商场名称
@property (nonatomic, strong) NSString *solutionType;//问题解决人Uuid
@property (nonatomic, strong) NSString *state;//责任人姓名
@property (nonatomic, strong) NSString *storePath;//责任人Uuid
@property (nonatomic, strong) NSString *submitTime;//
@property (nonatomic, strong) NSString *submitUser_code;
@property (nonatomic, strong) NSString *submitUser_name;//
@property (nonatomic, strong) NSString *submitUser_uuid;//
@property (nonatomic, strong) NSString *title;//问题处理分类
@property (nonatomic, strong) NSString *uuid;//
@property (nonatomic, strong) NSString *version;//
@property (nonatomic, strong) NSString *principal_uuid;
@property (nonatomic, strong) NSString *principal_name;
@property (nonatomic, strong) NSString *principal_code;
@property (nonatomic, strong) NSString *store_code;
@property (nonatomic, strong) NSString *store_uuid;
@property (nonatomic, strong) NSString *store_name;
@end