28 lines
878 B
Objective-C
28 lines
878 B
Objective-C
//
|
|
// WithdrawRecordList.h
|
|
//
|
|
// Created by Yao on 2024/11/9
|
|
// Copyright (c) 2024 zL. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface WithdrawRecordList : NSObject <NSCoding, NSCopying>
|
|
|
|
@property (nonatomic, assign) CGFloat amount;
|
|
@property (nonatomic, strong) NSString *bankName;
|
|
@property (nonatomic, assign) NSInteger bankId;
|
|
@property (nonatomic, assign) NSInteger identifier;
|
|
@property (nonatomic, assign) NSInteger status;
|
|
@property (nonatomic, assign) NSInteger inviteId;
|
|
@property (nonatomic, strong) NSString *inviteCode;
|
|
@property (nonatomic, strong) NSString *name;
|
|
@property (nonatomic, assign) CGFloat balance;
|
|
@property (nonatomic, strong) NSString *createTime;
|
|
|
|
+ (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
|
|
- (instancetype)initWithDictionary:(NSDictionary *)dict;
|
|
- (NSDictionary *)dictionaryRepresentation;
|
|
|
|
@end
|