| 123456789101112131415161718192021222324252627282930313233 |
- //
- // NoticeSourceModel.h
- //
- // Created by Steven on 2022/5/10
- // Copyright (c) 2022 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface NoticeSourceModel : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSString *internalBaseClassIdentifier;
- @property (nonatomic, strong) NSString *modifyOn;
- @property (nonatomic, strong) NSString *createOn;
- @property (nonatomic, strong) NSString *releaseTime;
- @property (nonatomic, strong) NSString *updateBy;
- @property (nonatomic, assign) double releaseStatus;
- @property (nonatomic, strong) NSString *content;
- @property (nonatomic, strong) NSString *catalogType;
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, assign) double order;
- @property (nonatomic, strong) NSString *updateName;
- @property (nonatomic, assign) double catalogId;
- @property (nonatomic, assign) double status;
- @property (nonatomic, assign) double createBy;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|