DailyTaskModel.h
1.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//
// DailyTaskModel.h
// DreamSleep
//
// Created by peter on 2022/5/31.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/// 每日任务数据model
@interface DailyTaskModel : NSObject
/// 任务id
@property (nonatomic, assign) int task_id;
/// 任务状态:0:去完成,1:待领取,2:已领取
@property (nonatomic, assign) int state;
/// 完成数
@property (nonatomic, assign) int finish;
/// 总数
@property (nonatomic, assign) int total;
/// 任务积分值
@property (nonatomic, assign) int points;
/// 任务已完成积分
@property (nonatomic, assign) int finish_point;
/// 任务总积分
@property (nonatomic, assign) int integral;
/// 任务描述详情
@property (nonatomic, copy) NSString *task_description;
/// 任务名
@property (nonatomic, copy) NSString *name;
/// 任务描述
@property (nonatomic, copy) NSString *item_name;
/// 跳转页面url
@property (nonatomic, copy) NSString *url;
/// 任务图标
@property (nonatomic, copy) NSString *img_url;
@end
NS_ASSUME_NONNULL_END