| 123456789101112131415161718192021222324 |
- //
- // MOHistoryBaseData.h
- //
- // Created by SuperCabbage on 2023/12/28
- // Copyright (c) 2023 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOHistoryBaseData : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSArray *historyList;
- @property (nonatomic, strong) NSString *next;
- /** 同一天要归为一个对象 */
- @property (nonatomic, strong) NSString *dayStr;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|