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.rongyichuang.dashboard.dto.response;
|
| /**
| * 报名趋势数据点
| */
| public class RegistrationTrendPoint {
|
| /**
| * 日期(yyyy-MM-dd)
| */
| private String date;
|
| /**
| * 报名数量
| */
| private Long count;
|
| public RegistrationTrendPoint() {
| }
|
| public RegistrationTrendPoint(String date, Long count) {
| this.date = date;
| this.count = count;
| }
|
| public String getDate() {
| return date;
| }
|
| public void setDate(String date) {
| this.date = date;
| }
|
| public Long getCount() {
| return count;
| }
|
| public void setCount(Long count) {
| this.count = count;
| }
| }
|
|