MOTopsBasedata.h 606 B

1234567891011121314151617181920212223
  1. //
  2. // MOTopsBasedata.h
  3. //
  4. // Created by SuperCabbage on 2024/2/1
  5. // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface MOTopsBasedata : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, strong) NSArray *incomeData;
  10. @property (nonatomic, strong) NSArray *outcomeData;
  11. @property (nonatomic, strong) NSArray *familyData;
  12. @property (nonatomic, strong) NSArray *pksData;
  13. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  14. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  15. - (NSDictionary *)dictionaryRepresentation;
  16. @end