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
| package org.yeshi.utils.statistic;
|
| /**
| * @author hxh
| * @title: StatisticNumberResult
| * @description: 统计数量结果
| * @date 2021/11/18 18:53
| */
| public class StatisticNumberResult {
| private String time;
| private long number;
|
| public String getTime() {
| return time;
| }
|
| public void setTime(String time) {
| this.time = time;
| }
|
| public long getNumber() {
| return number;
| }
|
| public void setNumber(long number) {
| this.number = number;
| }
| }
|
|