-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMatchesLogQuery.java
More file actions
182 lines (136 loc) · 3.73 KB
/
MatchesLogQuery.java
File metadata and controls
182 lines (136 loc) · 3.73 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
package dzdc.core.query;
import cn.afterturn.easypoi.excel.annotation.Excel;
import com.fasterxml.jackson.annotation.JsonFormat;
import dzdc.core.bi.dto.BaseDto;
import org.joda.time.DateTime;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
/**
* 牌局记录
* @author: zhongwei
* Date:2020年05月21日 14:30
*/
public class MatchesLogQuery extends BaseQuery{
private int id;
//时间
@Excel(name="时间")
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
private DateTime dateTime;
@Excel(name="用户Id")
private Integer uuid;
@Excel(name="系统平台标识(1:ios,2:android,3:h5)")
private String platform;
@Excel(name="渠道标识")
private String channelId;
@Excel(name="区域ID")
private String areaId;
@Excel(name="房间ID")
private String roomId;
@Excel(name="比赛场次")
private String matches;
@Excel(name="赢得积分")
private String winPoints;
@Excel(name="手牌")
private String handCard;
@Excel(name="公牌")
private String publicCard;
@Excel(name="本局牌型")
private String cardType;
@Excel(name="赢家牌型")
private String winnerCardType;
@DateTimeFormat(pattern = "yyyy-MM-dd HH:ss:mm")
private Date startDate;
@DateTimeFormat(pattern = "yyyy-MM-dd HH:ss:mm")
private Date endDate;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public DateTime getDateTime() {
return dateTime;
}
public void setDateTime(DateTime dateTime) {
this.dateTime = dateTime;
}
public Integer getUuid() {
return uuid;
}
public void setUuid(Integer uuid) {
this.uuid = uuid;
}
public void setPlatform(String platform) {
this.platform = platform;
}
public String getChannelId() {
return channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
}
public String getAreaId() {
return areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public String getRoomId() {
return roomId;
}
public void setRoomId(String roomId) {
this.roomId = roomId;
}
public String getMatches() {
return matches;
}
public void setMatches(String matches) {
this.matches = matches;
}
public String getWinPoints() {
return winPoints;
}
public void setWinPoints(String winPoints) {
this.winPoints = winPoints;
}
public String getHandCard() {
return handCard;
}
public void setHandCard(String handCard) {
this.handCard = handCard;
}
public String getPublicCard() {
return publicCard;
}
public void setPublicCard(String publicCard) {
this.publicCard = publicCard;
}
public String getCardType() {
return cardType;
}
public void setCardType(String cardType) {
this.cardType = cardType;
}
public String getWinnerCardType() {
return winnerCardType;
}
public void setWinnerCardType(String winnerCardType) {
this.winnerCardType = winnerCardType;
}
@Override
public Date getStartDate() {
return startDate;
}
@Override
public void setStartDate(Date startDate) {
this.startDate = startDate;
}
@Override
public Date getEndDate() {
return endDate;
}
@Override
public void setEndDate(Date endDate) {
this.endDate = endDate;
}
}