Instructions.h 1.58 KB
Newer Older
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
//
//  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;


37 38 39 40
//    @property (nonatomic, strong) NSArray<TOForumTopicEntity> *forumTopicEntity;   改成  @property (nonatomic, strong) NSArray<CustomTOForumTopicEntity> *forumTopicEntity;



41 42

#endif /* Instructions_h */