This commit is contained in:
Yao
2025-01-11 14:58:16 +08:00
parent f82486e8b0
commit 1095c32599
262 changed files with 62730 additions and 36131 deletions

30
ShenQi/PushRecordList.h Normal file
View File

@@ -0,0 +1,30 @@
//
// PushRecordList.h
//
// Created by on 2025/1/11
// Copyright (c) 2025 zL. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface PushRecordList : NSObject <NSCoding, NSCopying>
@property (nonatomic, assign) NSInteger status;
@property (nonatomic, strong) NSString *content;
@property (nonatomic, assign) NSInteger userId;
@property (nonatomic, strong) NSString *jumpUrl;
@property (nonatomic, assign) NSInteger receiveTimes;
@property (nonatomic, assign) NSInteger recordId;
@property (nonatomic, strong) NSString *image;
@property (nonatomic, strong) NSString *title;
@property (nonatomic, assign) NSInteger type; // 1文字 2图片 3链接跳转
@property (nonatomic, strong) NSString *createTime;
@property (nonatomic, assign) BOOL isOpen;
@property (nonatomic, assign) CGFloat imageHeight;
+ (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- (instancetype)initWithDictionary:(NSDictionary *)dict;
- (NSDictionary *)dictionaryRepresentation;
@end