24 lines
609 B
Objective-C
24 lines
609 B
Objective-C
//
|
|
// QustionAnswer.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/12.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <JSONModel/JSONModel.h>
|
|
|
|
@interface QustionAnswer : JSONModel
|
|
@property (nonatomic,copy) NSString *answer;
|
|
@property (nonatomic,assign) int bsjz;
|
|
@property (nonatomic,copy) NSString *createTime;
|
|
@property (nonatomic,assign) int dryness;
|
|
@property (nonatomic,assign) int fx;
|
|
@property (nonatomic,assign) int answer_id;
|
|
//默认答案 1选中 0 非选中
|
|
@property (nonatomic,assign) int defaultFlag;
|
|
//答案h序号
|
|
@property (nonatomic,assign) int sortNum;
|
|
|
|
@end
|