GET /companies/dashboards/years/months?startDate=xxx&endDate=xxx
[
{
private int year;
private int month;
private Long totalAmount;
}
]
GET /companies/dashboards/years/days?startDate=xxx&endDate=xxx
[
{
private int year;
private int month;
private int day;
private Long totalAmount;
}
]
GET /companies/dashboards/months/departments?startDate=xxx&endDate=xxx
response
[
{
private UUID departmentId;
private String departmentName;
private Long amount;
}
]
GET /companies/dashboards/months/employees?startDate=xxx&endDate=xxx
response
[
{
private UUID employeeId;
private String employeeName;
private Long amount;
}
]