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.
38 lines
913 B
38 lines
913 B
// |
|
// SignListModel.h |
|
// tongxin |
|
// |
|
// Created by ecell on 2023/3/30. |
|
// Copyright © 2023 xTT. All rights reserved. |
|
// |
|
|
|
#import "ZDBaseModel.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface SignListModel : ZDBaseModel |
|
|
|
/// 最后签到时间戳 示例:1679559494(毫秒) |
|
@property (nonatomic ,assign) NSInteger lastSignTime; |
|
|
|
/// 连续签到天数 |
|
@property (nonatomic ,assign) NSInteger keepSignDays; |
|
|
|
/// 最后签到日期 示例:2023-4-1 |
|
@property (nonatomic ,copy) NSString *lastSignDate; |
|
|
|
/// 最后签到获得积分数 |
|
@property (nonatomic ,assign) NSInteger lastSignNumber; |
|
|
|
/// 总积分数 |
|
@property (nonatomic ,assign) NSInteger total; |
|
|
|
/// 签到详细信息 |
|
/// date String 签到日期 示例:2023-4-1 |
|
/// number int 当天获得积分数 |
|
/// t int 签到时间戳 示例:1679559494(毫秒) |
|
@property (nonatomic ,copy) NSArray *signList; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|