MOGuildData.h 722 B

123456789101112131415161718192021222324252627
  1. //
  2. // MOGuildData.h
  3. //
  4. // Created by SuperCabbage on 2023/10/25
  5. // Copyright (c) 2023 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @class MOGuildBase;
  9. @interface MOGuildData : NSObject <NSCoding, NSCopying>
  10. /** 状态(0=空白状态,1=申请中,2=已有工会) */
  11. @property (nonatomic, assign) double status;
  12. /** */
  13. @property (nonatomic, strong) NSArray *guildPower;
  14. /** 工会信息 */
  15. @property (nonatomic, strong) MOGuildBase *guildBase;
  16. /** */
  17. @property (nonatomic, strong) NSArray *guidlLatest;
  18. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  19. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  20. - (NSDictionary *)dictionaryRepresentation;
  21. @end