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
| package com.ks.goldcorn.query;
|
| public class SourceQuery {
|
| private Long appId;
| private String nameKey;
| private long start;
| private int count;
|
| public Long getAppId() {
| return appId;
| }
|
| public void setAppId(Long appId) {
| this.appId = appId;
| }
|
| public String getNameKey() {
| return nameKey;
| }
|
| public void setNameKey(String nameKey) {
| this.nameKey = nameKey;
| }
|
| public long getStart() {
| return start;
| }
|
| public void setStart(long start) {
| this.start = start;
| }
|
| public int getCount() {
| return count;
| }
|
| public void setCount(int count) {
| this.count = count;
| }
| }
|
|