admin
2022-04-26 36681e15e12aaa9135f69260472de65303cdcba3
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
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 isDouble;
    private Long finishTime;
    //数量
    private Integer num;
    //持续时间
    private Integer timeSeconds;
 
 
    public GoldCornGetType getType() {
        return type;
    }
 
    public void setType(GoldCornGetType type) {
        this.type = type;
    }
 
    public Boolean getDouble() {
        return isDouble;
    }
 
    public void setDouble(Boolean aDouble) {
        isDouble = aDouble;
    }
 
    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;
    }
}