45 lines
1.4 KiB
Objective-C
45 lines
1.4 KiB
Objective-C
//
|
|
// LMGonghuiDetailModel.h
|
|
// SweetParty
|
|
//
|
|
// Created by Xmac on 2024/8/8.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
@class LMGonghuiDetailGhzModel;
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface LMGonghuiDetailModel : NSObject
|
|
|
|
@property (nonatomic, strong) NSString *guild_id;
|
|
@property (nonatomic, strong) NSString *guild_special_id;
|
|
@property (nonatomic, strong) NSString *uid;
|
|
@property (nonatomic, strong) NSString *guild_name;
|
|
@property (nonatomic, strong) NSString *cover;
|
|
@property (nonatomic, strong) NSString *money;
|
|
@property (nonatomic, strong) NSString *num;
|
|
@property (nonatomic, strong) NSString *contribution_value;
|
|
@property (nonatomic, strong) NSString *last_week_income;
|
|
@property (nonatomic, strong) NSString *this_week_income;
|
|
@property (nonatomic, strong) NSString *intro;
|
|
@property (nonatomic, strong) NSString *last_week_income_money; //上周补贴
|
|
@property (nonatomic, strong) NSString *add_time;
|
|
|
|
@property (nonatomic, strong) LMGonghuiDetailGhzModel *ghz;
|
|
|
|
@end
|
|
|
|
@interface LMGonghuiDetailGhzModel : NSObject
|
|
|
|
@property (nonatomic, strong) NSString *uid;
|
|
@property (nonatomic, strong) NSString *nick_name;
|
|
@property (nonatomic, strong) NSString *head_pic;
|
|
@property (nonatomic, strong) NSString *special_uid;
|
|
@property (nonatomic, strong) NSString *noblity_image;
|
|
@property (nonatomic, copy) NSString *charm_level_image;
|
|
@property (nonatomic, copy) NSString *contribution_level_image;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|