admin
2022-04-21 2464548977f4720bc8fceeb5d999c1a3852c2d10
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
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;
 
 
    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;
    }
}