-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9b99627
commit 78f9437
Showing
7 changed files
with
141 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
src/main/java/com/strandls/esmodule/models/DayAggregation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/** | ||
* | ||
*/ | ||
package com.strandls.esmodule.models; | ||
|
||
/** | ||
* @author Rishitha Ravi | ||
* | ||
* | ||
*/ | ||
public class DayAggregation { | ||
|
||
private String date; | ||
private Long value; | ||
|
||
public DayAggregation() { | ||
super(); | ||
} | ||
|
||
public DayAggregation(String date, Long value) { | ||
super(); | ||
this.date = date; | ||
this.value = value; | ||
} | ||
|
||
public String getDate() { | ||
return date; | ||
} | ||
|
||
public void setDate(String date) { | ||
this.date = date; | ||
} | ||
|
||
public Long getValue() { | ||
return value; | ||
} | ||
|
||
public void setValue(Long value) { | ||
this.value = value; | ||
} | ||
|
||
} |
52 changes: 52 additions & 0 deletions
52
src/main/java/com/strandls/esmodule/models/MonthAggregation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/** | ||
* | ||
*/ | ||
package com.strandls.esmodule.models; | ||
|
||
/** | ||
* @author Rishitha Ravi | ||
* | ||
* | ||
*/ | ||
public class MonthAggregation { | ||
|
||
private String month; | ||
private String year; | ||
private Long value; | ||
|
||
public MonthAggregation() { | ||
super(); | ||
} | ||
|
||
public MonthAggregation(String month, String year, Long value) { | ||
super(); | ||
this.month = month; | ||
this.year = year; | ||
this.value = value; | ||
} | ||
|
||
public String getMonth() { | ||
return month; | ||
} | ||
|
||
public void setMonth(String month) { | ||
this.month = month; | ||
} | ||
|
||
public String getYear() { | ||
return year; | ||
} | ||
|
||
public void setYear(String year) { | ||
this.year = year; | ||
} | ||
|
||
public Long getValue() { | ||
return value; | ||
} | ||
|
||
public void setValue(Long value) { | ||
this.value = value; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters