小说绘上架版本
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user