// // Instructions.h // Lighting // // Created by 曹云霄 on 2016/12/6. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #ifndef Instructions_h #define Instructions_h // 所有NSDecimalNumber 改成 NSNumber // @property (nonatomic, strong) NSArray<TOJingdongEcardEntity> *eCards 改成 @property (nonatomic, strong) NSMutableArray<TOJingdongEcardEntity> *eCards; // 新增 @class CustomStudyEntity; // 新增 @class CustomTOStudyTopicOptionEntity; // 新增 @protocol CustomStudyEntity @end // 新增 @protocol CustomTOStudyTopicOptionEntity @end // @property (nonatomic, strong) NSArray<TOStudyTaskEntity> *studyTasks 改成 @property (nonatomic, strong) NSArray<CustomStudyEntity> *studyTasks; // @property (nonatomic, strong) NSArray<TOStudyTopicOptionEntity> *options 改成 @property (nonatomic, strong) NSMutableArray<CustomTOStudyTopicOptionEntity> *options; // @property (nonatomic, copy) NSString *content 改成 @property (nonatomic, copy) NSString *contentString // @property (nonatomic, strong) NSArray<TOPassLevelTopicEntity> *topics; 改成 @property (nonatomic, strong) NSArray<CustomTOPassLevelTopicEntity> *topics; // @property (nonatomic, strong) NSArray<TOPassLevelTopicOptionEntity> *options; 改成 @property (nonatomic, strong) NSMutableArray<CustomTOPassLevelTopicOptionEntity> *options; // @property (nonatomic, strong) NSArray<TOForumTopicEntity> *forumTopicEntity; 改成 @property (nonatomic, strong) NSArray<CustomTOForumTopicEntity> *forumTopicEntity; #endif /* Instructions_h */