新增项目

This commit is contained in:
liyuhua
2023-12-07 10:50:21 +08:00
parent c51d2cb31d
commit 1b7fee7304
4141 changed files with 183449 additions and 39224 deletions

View File

@@ -0,0 +1,93 @@
//
// DDDynamicModel.h
// DingDangApp
//
// Created by apple on 2023/5/31.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface DDDynamicLocationModel : NSObject
@property (nonatomic, copy) NSString * lng;
@property (nonatomic, copy) NSString * lat;
@property (nonatomic, copy) NSString * id;
@property (nonatomic, copy) NSString * name;
@end
@interface DDDynamicModel : NSObject
/*
动态文字
*/
@property (nonatomic,copy) NSString * content;
/*
视频首帧
*/
@property (nonatomic,copy) NSString * cover_img;
/*
动态id
*/
@property (nonatomic, copy) NSString * id;
/*
图片数组
*/
@property (nonatomic,strong) NSMutableArray * imgs;
/*
是否显示位置
*/
@property (nonatomic, assign) NSInteger is_show_location;
/*
图片宽高比
*/
@property (nonatomic,copy) NSString * proportion;
/*
点赞数
*/
@property (nonatomic, copy) NSString * support;
@property (nonatomic, copy) NSString * comment_num;
/*
动态类型 imgs 图片 video 视频 text文字
*/
@property (nonatomic, copy) NSString * type_name;
//位置
//@property (nonatomic, strong) YVDynamicLocationModel *userDynamicLocation;
@property (nonatomic, copy) NSString * user_id;
/*
视频地址
*/
@property (nonatomic, copy) NSString * video;
@property (nonatomic, strong) AppUserModel * user;
@property (nonatomic, strong) NSString *userVipLevelIcon;
@property (nonatomic, strong) NSString *userVipLevel;
@property (nonatomic, strong) NSString *userVipExperience;
@property (nonatomic, assign) BOOL isOpening;
@property (nonatomic, assign, readonly) BOOL shouldShowMoreButton;
/*
是否点赞
*/
@property (nonatomic, assign) BOOL is_give_like;
/*
是否关注
*/
@property (nonatomic, assign) BOOL is_attention;
@property (nonatomic, copy) NSString *c_time;
/*
直播
*/
@property (nonatomic, assign) BOOL in_live;
/*
直播房间id
*/
@property (nonatomic, copy) NSString * in_live_room_id;
@property (nonatomic, strong) DDDynamicLocationModel *userDynamicLocation;
@property (nonatomic, assign) CGFloat rowHeight;
@property (nonatomic, assign) CGFloat picturesHeight;
@property (nonatomic, assign) CGFloat videoHeight;
@property (nonatomic, assign) CGFloat textHeight;
@property (nonatomic, copy) NSString * head_portrait_box;//头像框
@end
NS_ASSUME_NONNULL_END