admin
2021-01-28 8c1c003c60d2f27b3c55e248451caeec7f2b5631
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
package com.ks.daylucky.pojo.VO;
 
import java.math.BigDecimal;
 
public class DrawnProbabilityVO {
    private String average;//平均中奖概率
    private String my;//我的中奖概率
    private int percent;//百分比
    private BigDecimal offset;//与平均值相差倍数
 
 
    public String getAverage() {
        return average;
    }
 
    public void setAverage(String average) {
        this.average = average;
    }
 
    public String getMy() {
        return my;
    }
 
    public void setMy(String my) {
        this.my = my;
    }
 
    public int getPercent() {
        return percent;
    }
 
    public void setPercent(int percent) {
        this.percent = percent;
    }
 
    public BigDecimal getOffset() {
        return offset;
    }
 
    public void setOffset(BigDecimal offset) {
        this.offset = offset;
    }
}