103 lines
2.7 KiB
C
103 lines
2.7 KiB
C
|
|
//
|
|||
|
|
// THBottleInfoModel.h
|
|||
|
|
// TreeHole
|
|||
|
|
//
|
|||
|
|
// Created by iOS on 2023/2/11.
|
|||
|
|
// Copyright © 2023 CYH. All rights reserved.
|
|||
|
|
//
|
|||
|
|
|
|||
|
|
#import <Foundation/Foundation.h>
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_BEGIN
|
|||
|
|
|
|||
|
|
@interface THBottleInfoModel : NSObject
|
|||
|
|
|
|||
|
|
//MARK: bottle
|
|||
|
|
@property(nonatomic, copy)NSString *bottle_id;
|
|||
|
|
///瓶子类型
|
|||
|
|
@property(nonatomic, copy)NSString *bottle_type;
|
|||
|
|
@property(nonatomic, copy)NSString *bottle_type_name;
|
|||
|
|
///瓶子编号
|
|||
|
|
@property(nonatomic, copy)NSString *bottle_num;
|
|||
|
|
///判断是否为good瓶, ==@"good"
|
|||
|
|
@property(nonatomic, copy)NSString *user_operation_tag;
|
|||
|
|
///瓶子创建时间
|
|||
|
|
@property(nonatomic, copy)NSString *bottle_create_time;
|
|||
|
|
///文本内容
|
|||
|
|
@property(nonatomic, copy)NSString *content;
|
|||
|
|
///图片数组
|
|||
|
|
@property(nonatomic, strong)NSArray *images;
|
|||
|
|
///是否有附件
|
|||
|
|
@property(nonatomic, assign)BOOL is_attach;
|
|||
|
|
///是否可以看瓶子附件内容(图片/语音/视频)
|
|||
|
|
//@property(nonatomic, assign)BOOL can_see;
|
|||
|
|
///textfield 的placehold
|
|||
|
|
@property(nonatomic, copy)NSString *reply_edit_placehold;
|
|||
|
|
///编辑框状态: 是否不能编辑 ? 隐藏 : 显示
|
|||
|
|
@property(nonatomic, assign)BOOL disable_reply_edit;
|
|||
|
|
///交互类型: 回复?交换?购买 --- voice_game(声音)/pic_game(图片)/secret_game(秘密)/sell_photos(服务)
|
|||
|
|
@property(nonatomic, copy)NSString *interaction_type;
|
|||
|
|
///附件内容:语音?图片?音频? --- BottleContentExtraTypeImage/BottleContentExtraTypeVoice/BottleContentExtraTypeVideo
|
|||
|
|
@property(nonatomic, copy)NSString *content_extra_type;
|
|||
|
|
///不能看的话,提示什么
|
|||
|
|
@property(nonatomic, copy)NSString *block_see_tips;
|
|||
|
|
|
|||
|
|
|
|||
|
|
///MARK: 管理员
|
|||
|
|
@property(nonatomic, copy)NSString *manager_info;
|
|||
|
|
|
|||
|
|
//MARK: User
|
|||
|
|
@property(nonatomic, copy)NSString *user_id;
|
|||
|
|
@property(nonatomic, copy)NSString *im_user_id;
|
|||
|
|
@property(nonatomic, copy)NSString *gender_str;
|
|||
|
|
@property(nonatomic, copy)NSString *nick_name;
|
|||
|
|
@property(nonatomic, copy)NSString *user_des;
|
|||
|
|
|
|||
|
|
//MARK: VIP
|
|||
|
|
@property(nonatomic, assign)BOOL need_vip;
|
|||
|
|
@property(nonatomic, assign)BOOL vip_bottle;
|
|||
|
|
///"开通VIP\n即可无限查看和回应写真瓶\n还有其它6+小酒馆会员权益";
|
|||
|
|
@property(nonatomic, copy)NSString *vip_des;
|
|||
|
|
///"限时特惠,8+权益"
|
|||
|
|
@property(nonatomic, copy)NSString *vip_promotion_des;
|
|||
|
|
///放弃弹框标题和内容
|
|||
|
|
@property(nonatomic, copy)NSString *alert_title;
|
|||
|
|
@property(nonatomic, copy)NSString *alert_content;
|
|||
|
|
|
|||
|
|
|
|||
|
|
//MARK: Custom
|
|||
|
|
@property(nonatomic, strong)UIImage *TH_genderImg;
|
|||
|
|
@property(nonatomic, assign)THBottleType TH_bottleType;
|
|||
|
|
/*
|
|||
|
|
"":0,
|
|||
|
|
"":"string",
|
|||
|
|
"":0,
|
|||
|
|
"":"string",
|
|||
|
|
"":"string",
|
|||
|
|
"":0,
|
|||
|
|
"":"string",
|
|||
|
|
"":"string",
|
|||
|
|
"":"string",
|
|||
|
|
"":"string",
|
|||
|
|
"":"string",
|
|||
|
|
"":"string",
|
|||
|
|
"":[...],
|
|||
|
|
"":0,
|
|||
|
|
"":0,
|
|||
|
|
"":"string",
|
|||
|
|
"":"string",
|
|||
|
|
"":0,
|
|||
|
|
"":"string",
|
|||
|
|
"":"string",
|
|||
|
|
"":"string",
|
|||
|
|
"":"string",
|
|||
|
|
"":"string",
|
|||
|
|
"":"string"
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
@end
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_END
|