1234567891011121314151617181920212223242526272829303132333435 |
- //
- // ModelDocumentLibrary.h
- //
- // Created by on 2021/8/9
- // Copyright (c) 2021 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface ModelDocumentLibrary : NSObject
- @property (nonatomic, strong) NSString *internalBaseClassIdentifier;
- @property (nonatomic, strong) NSString *sysUserId;
- @property (nonatomic, strong) NSString *sendicon;
- @property (nonatomic, strong) NSString *imagethree;
- @property (nonatomic, strong) NSString *showtime;
- @property (nonatomic, strong) NSString *sendname;
- @property (nonatomic, strong) NSString *createtime;
- @property (nonatomic, assign) double click;
- @property (nonatomic, assign) double state;
- @property (nonatomic, strong) NSString *content;
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, assign) double clickbase;
- @property (nonatomic, strong) NSString *imagetwo;
- @property (nonatomic, strong) NSString *imageone;
- @property (nonatomic, strong) NSString *webUrl;
- @property (nonatomic, strong) NSString *typeid1;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|