GiGaMaskTime/GIGA/Modules/Mask/Exercises/Model/GiGaQuestionModel.h

44 lines
1.1 KiB
Objective-C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// GiGaQuestionModel.h
// GIGA
//
// Created by lianxiang on 2018/8/23.
// Copyright © 2018年 com.giga.ios. All rights reserved.
//
#import <JSONModel/JSONModel.h>
@interface GiGaQuestionModel : JSONModel
//统计题数总量
@property (nonatomic, copy) NSString *totalCount;
//试题id
@property (nonatomic, copy) NSString *questionid;
//试题标题
@property (nonatomic, copy) NSString *question;
//题目类型1单选题 2多选题 3判断题 4填空题 5简答题
@property (nonatomic, copy) NSString *questiontype;
//题目类型文本(单选题、多选题、判断题、填空题、简答题)
@property (nonatomic, copy) NSString *questiontype_text;
//选项数量
@property (nonatomic, copy) NSString *questionselectnumber;
//用户填写的答案
@property (nonatomic, strong) NSMutableArray *userAnswer;
//答案选项
@property (nonatomic, strong) NSMutableArray *tkselect;
//正确答案(单选题、多选题、判断题)
@property (nonatomic, copy) NSString *trueanswer;
//答案分析
@property (nonatomic, copy) NSString *questiondescribe;
@end