create
This commit is contained in:
29
ShenQi/Model/InviteCodeModelData.h
Normal file
29
ShenQi/Model/InviteCodeModelData.h
Normal file
@@ -0,0 +1,29 @@
|
||||
//
|
||||
// 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
|
||||
Reference in New Issue
Block a user