Files
2025-08-08 11:05:33 +08:00

53 lines
1.8 KiB
Objective-C

//
// WLStakeModel.h
// romantic
//
// Created by Xmac on 2024/4/20.
// Copyright © 2024 romantic. All rights reserved.
//
#import <Foundation/Foundation.h>
@class WLStakeMultipleModel;
NS_ASSUME_NONNULL_BEGIN
@interface WLStakeModel : NSObject
@property (nonatomic, assign) NSInteger surplus_time;//剩余时间 单位:秒
@property (nonatomic, assign) NSInteger is_finsh;//1已结束 2进行中 3未开放
@property (nonatomic, assign) NSInteger win_number;//中奖类型 1正上 2右上 3右下 4正下 5左下 6左上
@property (nonatomic, copy) NSString *win_count;//中奖人数
@property (nonatomic, copy) NSString *integral;//用户剩余金币
@property (nonatomic, copy) NSString *open_monster_price;//玩法单价
@property (nonatomic, copy) NSString *had_ticket_num;//用户剩余门票
@property (nonatomic, assign) NSInteger type;//中奖类型 1正上 2右上 3右下 4正下 5左下 6左上。 1 梦幻岛 2 琼华岛 3 幽灵岛 4 威西岛 5 崇明岛
@property (nonatomic, assign) NSInteger num;
@property (nonatomic, copy) NSString *type_name;
@property (nonatomic, copy) NSString *win_type;
@property (nonatomic, strong) NSArray<WLStakeMultipleModel *> *multiple_list;//星途列表
//中奖相关
@property (nonatomic, copy) NSString *gid;
@property (nonatomic, copy) NSString *gift_name;
@property (nonatomic, copy) NSString *base_image;
@property (nonatomic, copy) NSString *gift_price;
@property (nonatomic, assign) NSInteger is_win;//是否中奖 1是2否
@property (nonatomic, strong) NSArray *win_gift_list;//中奖礼物
@end
@interface WLStakeMultipleModel : NSObject
@property (nonatomic, assign) NSInteger type;
@property (nonatomic, assign) CGFloat multiple;
@property (nonatomic, assign) NSInteger num;
@property (nonatomic, copy) NSString *type_name;
@end
NS_ASSUME_NONNULL_END