admin
2022-10-28 0e9b6603d4ae9d11c1fbc90257ce816c5807b8ff
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package com.yeshi.makemoney.app.vo.goldcorn;
 
import com.yeshi.makemoney.app.entity.goldcorn.GoldCornGetType;
 
/**
 * @author hxh
 * @title: GoldCornDoTaskVO
 * @description: 做任务
 * @date 2022/4/21 13:46
 */
public class GoldCornDoTaskVO {
 
    private GoldCornGetType type;
    private Boolean doubles;
    private Long finishTime;
    //数量
    private Integer num;
    //持续时间
    private Integer timeSeconds;
 
 
    public GoldCornGetType getType() {
        return type;
    }
 
    public void setType(GoldCornGetType type) {
        this.type = type;
    }
 
 
    public Boolean getDoubles() {
        return doubles;
    }
 
    public void setDoubles(Boolean doubles) {
        this.doubles = doubles;
    }
 
    public Long getFinishTime() {
        return finishTime;
    }
 
    public void setFinishTime(Long finishTime) {
        this.finishTime = finishTime;
    }
 
    public Integer getNum() {
        return num;
    }
 
    public void setNum(Integer num) {
        this.num = num;
    }
 
    public Integer getTimeSeconds() {
        return timeSeconds;
    }
 
    public void setTimeSeconds(Integer timeSeconds) {
        this.timeSeconds = timeSeconds;
    }
}