MOTasksBiGo.h 656 B

1234567891011121314151617181920212223242526
  1. //
  2. // MOTasksBiGo.h
  3. //
  4. // Created by SuperCabbage on 2024/6/2
  5. // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface MOTasksBiGo : NSObject <NSCoding, NSCopying>
  9. //状态(0=不可领取,1=待领取,2=已领取)
  10. @property (nonatomic, assign) double status;
  11. @property (nonatomic, strong) NSString *id;
  12. //分钟数
  13. @property (nonatomic, assign) double minute;
  14. //红宝石数量
  15. @property (nonatomic, assign) double rubine;
  16. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  17. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  18. - (NSDictionary *)dictionaryRepresentation;
  19. @end