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;
|
}
|
}
|