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