InstrumentMessageModel.h 1018 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // InstrumentMessageModel.h
  3. //
  4. // Created by Steven on 2022/4/5
  5. // Copyright (c) 2022 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface InstrumentMessageModel : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, assign) id subjects;
  10. @property (nonatomic, strong) NSString *img;
  11. @property (nonatomic, assign) BOOL delFlag;
  12. @property (nonatomic, strong) NSString *internalBaseClassIdentifier;
  13. @property (nonatomic, strong) NSString *code;
  14. @property (nonatomic, strong) NSString *updateTime;
  15. @property (nonatomic, strong) NSString *createTime;
  16. @property (nonatomic, strong) NSString *name;
  17. @property (nonatomic, strong) NSString *parentSubjectName;
  18. @property (nonatomic, strong) NSString *desc;
  19. @property (nonatomic, strong) NSString *parentSubjectId;
  20. @property (nonatomic, assign) BOOL isChoose;
  21. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  22. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  23. - (NSDictionary *)dictionaryRepresentation;
  24. @end