新增接口,界面

This commit is contained in:
2026-01-26 16:53:41 +08:00
parent 0fa31418f6
commit f9d7579536
13 changed files with 1113 additions and 1 deletions

View File

@@ -0,0 +1,39 @@
//
// KBPersonaPageModel.m
// keyBoard
//
// Created by Kiro on 2026/1/26.
//
#import "KBPersonaPageModel.h"
#import <MJExtension/MJExtension.h>
@implementation KBOrderRule
@end
@implementation KBPersonaPageModel
#pragma mark - MJExtension
//
+ (NSDictionary *)mj_objectClassInArray {
return @{
@"records": [KBPersonaModel class],
@"orders": [KBOrderRule class]
};
}
//
- (void)mj_keyValuesDidFinishConvertingToObject {
if (!self.records) {
self.records = @[];
}
}
#pragma mark -
- (BOOL)hasMore {
return self.current < self.pages;
}
@end