You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
467 B
28 lines
467 B
// |
|
// BaseModel.h |
|
// ChineseAgri-businesses |
|
// |
|
// Created by ecell on 2022/6/29. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface BaseModel : NSObject<NSCoding,NSCopying> |
|
|
|
@property(nonatomic,strong) NSArray *records; |
|
|
|
@property(nonatomic,strong) NSDictionary *data; |
|
|
|
@property (nonatomic ,assign) NSInteger code; |
|
|
|
@property (nonatomic,strong) NSString *msg; |
|
|
|
@property (nonatomic ,assign) NSInteger pages; |
|
|
|
|
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|