create
This commit is contained in:
21
ShenQi/Model/BankModelData.h
Normal file
21
ShenQi/Model/BankModelData.h
Normal file
@@ -0,0 +1,21 @@
|
||||
//
|
||||
// BankModelData.h
|
||||
//
|
||||
// Created by Yao on 2024/11/9
|
||||
// Copyright (c) 2024 zL. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@interface BankModelData : NSObject <NSCoding, NSCopying>
|
||||
|
||||
@property (nonatomic, strong) NSString *bankCode;
|
||||
@property (nonatomic, assign) NSInteger identifier;
|
||||
@property (nonatomic, strong) NSString *bankName;
|
||||
@property (nonatomic, strong) NSString *country;
|
||||
|
||||
+ (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
|
||||
- (instancetype)initWithDictionary:(NSDictionary *)dict;
|
||||
- (NSDictionary *)dictionaryRepresentation;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user