MOHistoryBaseData.h 597 B

123456789101112131415161718192021222324
  1. //
  2. // MOHistoryBaseData.h
  3. //
  4. // Created by SuperCabbage on 2023/12/28
  5. // Copyright (c) 2023 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface MOHistoryBaseData : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, strong) NSArray *historyList;
  10. @property (nonatomic, strong) NSString *next;
  11. /** 同一天要归为一个对象 */
  12. @property (nonatomic, strong) NSString *dayStr;
  13. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  14. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  15. - (NSDictionary *)dictionaryRepresentation;
  16. @end