NotiferMessageModel.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // NotiferMessageModel.h
  3. //
  4. // Created by Steven on 2022/5/7
  5. // Copyright (c) 2022 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface NotiferMessageModel : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, strong) NSString *internalBaseClassIdentifier;
  10. @property (nonatomic, strong) NSString *modifyOn;
  11. @property (nonatomic, strong) NSString *clientId;
  12. @property (nonatomic, strong) NSString *sendTime;
  13. @property (nonatomic, strong) NSString *receiver;
  14. @property (nonatomic, strong) NSString *errorMsg;
  15. @property (nonatomic, strong) NSString *createOn;
  16. @property (nonatomic, strong) NSString *memo;
  17. @property (nonatomic, strong) NSString *content;
  18. @property (nonatomic, strong) NSString *type;
  19. @property (nonatomic, strong) NSString *title;
  20. @property (nonatomic, strong) NSString *userId;
  21. @property (nonatomic, strong) NSString *group;
  22. @property (nonatomic, assign) double readStatus;
  23. @property (nonatomic, strong) NSString *status;
  24. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  25. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  26. - (NSDictionary *)dictionaryRepresentation;
  27. @end