Files
yuyin_ios/SweetParty/主类/Mine/GongHui/SPGonghuiApplyModel.h
2025-08-08 11:05:33 +08:00

24 lines
530 B
Objective-C
Executable File

//
// SPGonghuiApplyModel.h
// SweetParty
//
// Created by bj_szd on 2022/6/30.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface SPGonghuiApplyModel : NSObject
@property (nonatomic, copy) NSString *id;
@property (nonatomic, copy) NSString *uid;
@property (nonatomic, copy) NSString *guild_id;
@property (nonatomic, assign) NSInteger status;//状态 1通过2申请中3拒绝
@property (nonatomic, copy) NSString *nick_name;
@property (nonatomic, copy) NSString *head_pic;
@end
NS_ASSUME_NONNULL_END