nickchange
2023-11-09 c036557db88c6297b9a626a892dce35c14ab8ee5
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package com.dsh.guns.modular.system.model;
 
import lombok.Data;
 
import java.math.BigDecimal;
@Data
public class GameConfig {
    private int id;
    private String name;
    private String img;
    private BigDecimal playCoin;
    private BigDecimal cash;
    private BigDecimal integral;
    private int gameId;
    private int otherId;
 
//    public GameConfig(int id, String name, String img, BigDecimal playCoin, BigDecimal cash, BigDecimal integral, int gameId, int otherId) {
//        this.id = id;
//        this.name = name;
//        this.img = img;
//        this.playCoin = playCoin;
//        this.cash = cash;
//        this.integral = integral;
//        this.gameId = gameId;
//        this.otherId = otherId;
//    }
 
    // Getters and Setters
 
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getImg() {
        return img;
    }
 
    public void setImg(String img) {
        this.img = img;
    }
 
    public BigDecimal getPlayCoin() {
        return playCoin;
    }
 
    public void setPlayCoin(BigDecimal playCoin) {
        this.playCoin = playCoin;
    }
 
    public BigDecimal getCash() {
        return cash;
    }
 
    public void setCash(BigDecimal cash) {
        this.cash = cash;
    }
 
    public BigDecimal getIntegral() {
        return integral;
    }
 
    public void setIntegral(BigDecimal integral) {
        this.integral = integral;
    }
 
    public int getGameId() {
        return gameId;
    }
 
    public void setGameId(int gameId) {
        this.gameId = gameId;
    }
 
    public int getOtherId() {
        return otherId;
    }
 
    public void setOtherId(int otherId) {
        this.otherId = otherId;
    }
}