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