Files
peko-ios/YuMi/Modules/YMNewHome/Model/EventItemModel.h

42 lines
1.9 KiB
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// EventItemModel.h
// YuMi
//
// Created by P on 2025/5/15.
//
#import "PIBaseModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface EventItemModel : PIBaseModel
@property (nonatomic, strong) NSString *eventTopic; // 事件主题
@property (nonatomic, assign) NSTimeInterval updateTime; // 更新时间戳
@property (nonatomic, assign) NSInteger offectTimes; // 未知字段
@property (nonatomic, assign) NSInteger shareNum; // 分享次数
@property (nonatomic, assign) NSInteger liveStatus; // 1未开始2进行中3-已结束
@property (nonatomic, assign) NSInteger eventStatus; // 0-待审核1-审核通过2-拒绝3-删除4-过期
@property (nonatomic, assign) NSInteger eventDuration; // 事件持续时间
@property (nonatomic, strong) NSString *roomAvatar; // 房间头像
@property (nonatomic, strong) NSString *eventBanner; // 事件横幅
@property (nonatomic, assign) NSInteger subNum; // 订阅数量
@property (nonatomic, strong) NSString *eventDetail; // 事件详情
@property (nonatomic, assign) NSInteger id; // 事件ID
@property (nonatomic, assign) NSInteger uid; // 用户ID
@property (nonatomic, assign) NSInteger noticeFans; // 通知粉丝
@property (nonatomic, assign) NSInteger roomErbanNo; // 房间号
@property (nonatomic, strong) NSString *eventStartTimeStr;// 事件开始时间字符串
@property (nonatomic, assign) NSTimeInterval eventEndTime;// 事件结束时间戳
@property (nonatomic, assign) BOOL subStatus; // 订阅状态
@property (nonatomic, assign) NSInteger roomUid; // 房间用户ID
@property (nonatomic, assign) NSTimeInterval eventStartTime;// 事件开始时间戳
@property (nonatomic, assign) NSTimeInterval createTime; // 创建时间戳
@property (nonatomic, copy) NSString *gender;
@property (nonatomic, copy) NSString *nick;
@end
NS_ASSUME_NONNULL_END