47 lines
787 B
Objective-C
47 lines
787 B
Objective-C
//
|
|
// QXDayTaskModel.m
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/7/10.
|
|
//
|
|
|
|
#import "QXDayTaskModel.h"
|
|
|
|
@implementation QXDayTaskModel
|
|
+(NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
|
|
return @{
|
|
@"tasks" : @"QXDayTaskTypeModel",
|
|
@"gift_box_list" : @"QXGiftBoxModel",
|
|
};
|
|
}
|
|
@end
|
|
|
|
|
|
@implementation QXGiftBoxModel
|
|
|
|
@end
|
|
|
|
@implementation QXDayTaskTypeModel
|
|
|
|
+(NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
|
|
return @{
|
|
@"daily_tasks" : @"QXDayTaskListModel",
|
|
@"usual_tasks" : @"QXDayTaskListModel",
|
|
@"daily_tasks_special": @"QXDayTaskListModel",
|
|
@"teacher_tasks": @"QXDayTaskListModel",
|
|
};
|
|
}
|
|
|
|
|
|
@end
|
|
|
|
@implementation QXDayTaskListModel
|
|
|
|
@end
|
|
|
|
@implementation QXTaskGiftBoxRecordModel
|
|
|
|
|
|
|
|
@end
|