20 lines
478 B
Objective-C
20 lines
478 B
Objective-C
//
|
|
// BankModelDataModel.h
|
|
//
|
|
// Created by Yao on 2024/11/9
|
|
// Copyright (c) 2024 zL. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface BankModelDataModel : NSObject <NSCoding, NSCopying>
|
|
|
|
@property (nonatomic, strong) NSArray *data;
|
|
@property (nonatomic, assign) NSInteger code;
|
|
|
|
+ (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
|
|
- (instancetype)initWithDictionary:(NSDictionary *)dict;
|
|
- (NSDictionary *)dictionaryRepresentation;
|
|
|
|
@end
|