admin
2022-04-29 6cc97918a5a42e37a3c3867cc5b78a0b9fd43a24
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
package com.yeshi.makemoney.app.dto.goldcorn;
 
/**
 * @author hxh
 * @title: GoldCornMakeResult
 * @description: 挣金币结果
 * @date 2022/4/28 11:17
 */
public class GoldCornMakeResultDTO {
 
    private Integer goldCorn;
 
    //剩余的事件数量
    private Long leftEventCount;
 
    public GoldCornMakeResultDTO(Integer goldCorn, Long leftEventCount) {
        this.goldCorn = goldCorn;
        this.leftEventCount = leftEventCount;
    }
 
    public Integer getGoldCorn() {
        return goldCorn;
    }
 
    public void setGoldCorn(Integer goldCorn) {
        this.goldCorn = goldCorn;
    }
 
    public Long getLeftEventCount() {
        return leftEventCount;
    }
 
    public void setLeftEventCount(Long leftEventCount) {
        this.leftEventCount = leftEventCount;
    }
}