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
//
// 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) NSString *uuid;//唯一标识
@property (nonatomic, strong) NSString *categoryName;//问题分类名称
@property (nonatomic, strong) NSString *categoryUuid;//问题分类Uuid
@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 *groupName;//专业组名称
@property (nonatomic, strong) NSString *groupUuid;//专业组Uuid
@property (nonatomic, strong) NSString *lastModify_id;//
@property (nonatomic, strong) NSString *lastModify_operName;//
@property (nonatomic, strong) NSString *lastModify_time;//
@property (nonatomic, strong) NSArray *pictureIds;//pictureIds
@property (nonatomic, strong) NSString *projectName;//商场名称
@property (nonatomic, strong) NSString *projectPath;//组织路径
@property (nonatomic, strong) NSString *projectUuid;//商场Uuid
@property (nonatomic, strong) NSDictionary *resolvePerson;//问题解决人Uuid
@property (nonatomic, strong) NSString *responsiblePersonName;//责任人姓名
@property (nonatomic, strong) NSString *responsiblePersonUuid;//责任人Uuid
@property (nonatomic, strong) NSString *state;//问题状态
@property (nonatomic, strong) NSDictionary *submitPerson;//
@property (nonatomic, strong) NSString *submitTime;//
@property (nonatomic, strong) NSString *type;//问题处理分类
@property (nonatomic, strong) NSString *version;//
@property (nonatomic, assign) BOOL hotspot; // 热点问题
@property (nonatomic, assign) int likeCount; // 点赞数
@end