create
This commit is contained in:
24
ShenQi/Model/WithdrawRecordData.h
Normal file
24
ShenQi/Model/WithdrawRecordData.h
Normal file
@@ -0,0 +1,24 @@
|
||||
//
|
||||
// WithdrawRecordData.h
|
||||
//
|
||||
// Created by Yao on 2024/11/9
|
||||
// Copyright (c) 2024 zL. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@interface WithdrawRecordData : NSObject <NSCoding, NSCopying>
|
||||
|
||||
@property (nonatomic, assign) NSInteger pages;
|
||||
@property (nonatomic, assign) BOOL hasNextPage;
|
||||
@property (nonatomic, assign) NSInteger nextPage;
|
||||
@property (nonatomic, assign) NSInteger total;
|
||||
@property (nonatomic, strong) NSArray *list;
|
||||
@property (nonatomic, assign) BOOL hasPreviousPage;
|
||||
@property (nonatomic, assign) NSInteger prePage;
|
||||
|
||||
+ (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
|
||||
- (instancetype)initWithDictionary:(NSDictionary *)dict;
|
||||
- (NSDictionary *)dictionaryRepresentation;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user