You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.2 KiB
57 lines
1.2 KiB
![]()
2 years ago
|
//
|
||
|
// RedFlowerModel.h
|
||
|
// LekangGuard
|
||
|
//
|
||
|
// Created by ecell on 2023/7/27.
|
||
|
//
|
||
|
|
||
|
#import "BaseModel.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface RedFlowerModel : BaseModel
|
||
|
|
||
|
|
||
|
/// string($date-time) 创建时间
|
||
|
@property (nonatomic ,copy) NSString *createTime;
|
||
|
|
||
|
/// integer($int32) 小红花个数
|
||
|
@property (nonatomic ,assign) NSInteger flowerNumber;
|
||
|
|
||
|
/// string 主键id
|
||
|
@property (nonatomic ,copy) NSString *Id;
|
||
|
|
||
|
/// string imei
|
||
|
@property (nonatomic ,copy) NSString *imei;
|
||
|
|
||
|
/// string 发布内容
|
||
|
@property (nonatomic ,copy) NSString *pushContent;
|
||
|
|
||
|
/// string 发布人id
|
||
|
@property (nonatomic ,copy) NSString *pushId;
|
||
|
|
||
|
/// string 发布人姓名
|
||
|
@property (nonatomic ,copy) NSString *pushName;
|
||
|
|
||
|
/// string 接收人id
|
||
|
@property (nonatomic ,copy) NSString *receiveId;
|
||
|
|
||
|
/// string 是否已读(0.未读,1.是已读)
|
||
|
@property (nonatomic ,assign) NSInteger receiveStatus;
|
||
|
|
||
|
/// string 奖励人id
|
||
|
@property (nonatomic ,copy) NSString *rewardId;
|
||
|
|
||
|
/// string 奖励人姓名
|
||
|
@property (nonatomic ,copy) NSString *rewardName;
|
||
|
|
||
|
/// string 小红花记录id
|
||
|
@property (nonatomic ,copy) NSString *stuRedFlowerId;
|
||
|
|
||
|
/// string($date-time) 更新时间
|
||
|
@property (nonatomic ,copy) NSString *updateTime;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|