36 lines
1.0 KiB
Objective-C
36 lines
1.0 KiB
Objective-C
//
|
|
// ZXYBoxModel.h
|
|
// romantic
|
|
//
|
|
// Created by bj_szd on 2024/2/21.
|
|
// Copyright © 2024 romantic. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ZXYBoxModel : NSObject
|
|
|
|
//剩余时间
|
|
@property (nonatomic, assign) NSInteger surplus_time;
|
|
//状态 1已结束 2进行中 3未开启
|
|
@property (nonatomic, assign) NSInteger is_finsh;
|
|
//中奖类型 1吉他2小提琴3古筝4架子鼓5钢琴
|
|
@property (nonatomic, assign) NSInteger win_number;
|
|
@property (nonatomic, copy) NSString *integral;//用户金币数量
|
|
@property (nonatomic, copy) NSString *airship;//用户飞船数量
|
|
//星球列表
|
|
@property (nonatomic, strong) NSArray *multiple_list;
|
|
|
|
//中奖相关
|
|
@property (nonatomic, assign) NSInteger is_win;//1中奖 2没中
|
|
@property (nonatomic, strong) NSArray *win_gift_list;//中奖礼物
|
|
@property (nonatomic, strong) NSArray *win_type_info;//中奖乐器
|
|
@property (nonatomic, copy) NSString *win_count;
|
|
@property (nonatomic, assign) NSInteger is_evil_wind;//是否双号 1是2否
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|