-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGameCoinChangeLogQuery.java
More file actions
69 lines (50 loc) · 1.3 KB
/
GameCoinChangeLogQuery.java
File metadata and controls
69 lines (50 loc) · 1.3 KB
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
package dzdc.core.query;
public class GameCoinChangeLogQuery extends BaseQuery {
/** 用户ID */
private Long uid;
/** 玩法 */
private Integer gameType;
private String blindId;
/** 小盲 */
private Integer smallBlind;
/** 大盲 */
private Integer bigBlind;
/** 前注 */
private Integer frontBet;
public Long getUid() {
return uid;
}
public void setUid(Long uid) {
this.uid = uid;
}
public Integer getGameType() {
return gameType;
}
public void setGameType(Integer gameType) {
this.gameType = gameType;
}
public String getBlindId() {
return blindId;
}
public void setBlindId(String blindId) {
this.blindId = blindId;
}
public Integer getSmallBlind() {
return smallBlind;
}
public void setSmallBlind(Integer smallBlind) {
this.smallBlind = smallBlind;
}
public Integer getBigBlind() {
return bigBlind;
}
public void setBigBlind(Integer bigBlind) {
this.bigBlind = bigBlind;
}
public Integer getFrontBet() {
return frontBet;
}
public void setFrontBet(Integer frontBet) {
this.frontBet = frontBet;
}
}