12345678910111213141516171819202122232425262728293031323334 |
- //
- // NotiferMessageModel.h
- //
- // Created by Steven on 2022/5/7
- // Copyright (c) 2022 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface NotiferMessageModel : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSString *internalBaseClassIdentifier;
- @property (nonatomic, strong) NSString *modifyOn;
- @property (nonatomic, strong) NSString *clientId;
- @property (nonatomic, strong) NSString *sendTime;
- @property (nonatomic, strong) NSString *receiver;
- @property (nonatomic, strong) NSString *errorMsg;
- @property (nonatomic, strong) NSString *createOn;
- @property (nonatomic, strong) NSString *memo;
- @property (nonatomic, strong) NSString *content;
- @property (nonatomic, strong) NSString *type;
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, strong) NSString *userId;
- @property (nonatomic, strong) NSString *group;
- @property (nonatomic, assign) double readStatus;
- @property (nonatomic, strong) NSString *status;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|