76 lines
2.5 KiB
Objective-C
Executable File
76 lines
2.5 KiB
Objective-C
Executable File
//
|
||
// RoomGiftModel.h
|
||
// QiaoYuYueWan
|
||
//
|
||
// Created by aa on 2019/7/20.
|
||
// Copyright © 2019 QiaoYuYueWan. All rights reserved.
|
||
//
|
||
|
||
#import <Foundation/Foundation.h>
|
||
|
||
|
||
@interface BJRoomGiftModel : NSObject
|
||
/*礼物id*/
|
||
@property (nonatomic, copy) NSString *gid;
|
||
/*礼物名字*/
|
||
@property(nonatomic, copy) NSString *gift_name;
|
||
/// 普通礼物 1普通
|
||
@property (nonatomic, copy) NSString *gift_type;
|
||
/*礼物价格*/
|
||
@property(nonatomic, copy) NSString *gift_price;
|
||
/*静态图片*/
|
||
@property(nonatomic, copy) NSString *base_image;
|
||
/*svga动画*/
|
||
@property(nonatomic, copy) NSString *play_image;
|
||
/*是否全服*/
|
||
@property(nonatomic, copy) NSString *is_public_screen;
|
||
/*是否公屏*/
|
||
@property(nonatomic, copy) NSString *is_public_server;
|
||
//普通/高级礼物,0普通,1高级
|
||
@property(nonatomic, copy) NSString *surprise;
|
||
/** 礼物数量 */
|
||
@property(nonatomic, strong) NSString *open_num;
|
||
/** 时间 */
|
||
@property(nonatomic, strong) NSString *add_time;
|
||
/// 背包礼物的数量
|
||
@property(nonatomic, copy) NSString *num; //背包特有
|
||
/// 标签名称
|
||
@property(nonatomic, copy) NSString *nobility_name;
|
||
@property(nonatomic, copy) NSString *tag_name;
|
||
|
||
@property(nonatomic, copy) NSString *uid;
|
||
@property(nonatomic, copy) NSString *nick_name;
|
||
@property(nonatomic, copy) NSString *head_pic;
|
||
@property(nonatomic, copy) NSString *integral;
|
||
|
||
///前端自行添加 :当前礼物被选中
|
||
@property (nonatomic, assign) BOOL isItemSelected;
|
||
///前端自行添加 :当前礼物是背包还是普通 2是背包礼物
|
||
@property (nonatomic, assign) NSInteger giftBagType;
|
||
///前端自行添加 :用户想要送出数量
|
||
@property (nonatomic, assign) NSInteger userSendNum;
|
||
///前端自行添加 :用户想要送的对象
|
||
@property (nonatomic, strong) NSArray<NSString *> *sendUids;
|
||
///前端自行添加 :标识背包全送
|
||
@property (nonatomic, assign) BOOL isBagSendAll;
|
||
|
||
|
||
|
||
//下面暂时废弃
|
||
//@property (nonatomic, strong) NSString *type;
|
||
//@property (nonatomic, strong) NSString *giftID;
|
||
//@property (nonatomic, strong) NSString *name;
|
||
//@property (nonatomic, strong) NSString *price;
|
||
//@property (nonatomic, strong) NSString *price_004;
|
||
//@property (nonatomic, strong) NSString *img;
|
||
//@property (nonatomic, strong) NSString *show_img;
|
||
//@property (nonatomic, strong) NSString *is_check;
|
||
//
|
||
//@property (nonatomic, strong) NSString *show_img2;
|
||
//@property (nonatomic, strong) NSString *e_name;
|
||
//@property (nonatomic, strong) NSString *wares_type;/*1、宝石 2、礼物 3、卡片 */
|
||
|
||
|
||
@end
|
||
|