小说绘上架版本

This commit is contained in:
xtfei2011
2021-02-07 11:24:08 +08:00
commit ee5c1c8b12
1762 changed files with 115892 additions and 0 deletions
@@ -0,0 +1,30 @@
//
// WXYZ_RecordsModel.h
// WXReader
//
// Created by Andrew on 2018/7/12.
// Copyright © 2018年 Andrew. All rights reserved.
//
#import <Foundation/Foundation.h>
@class WXBookRecordsListModel, TFPagingModel;
@interface WXYZ_RecordsModel : TFPagingModel
@property (nonatomic, strong) NSArray<WXBookRecordsListModel *> *list; //明细列表
@end
@interface WXBookRecordsListModel : NSObject
@property (nonatomic, copy) NSString *article; //string 明细说明
@property (nonatomic, copy) NSString *detail; //string 明细
@property (nonatomic, assign) NSInteger detail_type; //int 明细类型 1-充值 2-消费
@property (nonatomic, copy) NSString *date; //string 日期
@end
@@ -0,0 +1,19 @@
//
// WXYZ_RecordsModel.m
// WXReader
//
// Created by Andrew on 2018/7/12.
// Copyright © 2018年 Andrew. All rights reserved.
//
#import "WXYZ_RecordsModel.h"
@implementation WXYZ_RecordsModel
+ (NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
return @{@"list" : [WXBookRecordsListModel class]};
}
@end
@implementation WXBookRecordsListModel
@end