| 123456789101112131415161718192021222324252627 |
- //
- // MOGuildData.h
- //
- // Created by SuperCabbage on 2023/10/25
- // Copyright (c) 2023 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class MOGuildBase;
- @interface MOGuildData : NSObject <NSCoding, NSCopying>
- /** 状态(0=空白状态,1=申请中,2=已有工会) */
- @property (nonatomic, assign) double status;
- /** */
- @property (nonatomic, strong) NSArray *guildPower;
- /** 工会信息 */
- @property (nonatomic, strong) MOGuildBase *guildBase;
- /** */
- @property (nonatomic, strong) NSArray *guidlLatest;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|