Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
orders-monitoring-dashboard
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ramakanth Dhane
orders-monitoring-dashboard
Commits
105f3a03
Commit
105f3a03
authored
5 years ago
by
Ramakanth Dhane
Browse files
Options
Downloads
Patches
Plain Diff
Added weeklyorders DTO
parent
382539ab
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
omd-dashboard/src/main/java/com/nisum/omd/dto/WeeklyOrders.java
+25
-0
25 additions, 0 deletions
...shboard/src/main/java/com/nisum/omd/dto/WeeklyOrders.java
with
25 additions
and
0 deletions
omd-dashboard/src/main/java/com/nisum/omd/dto/WeeklyOrders.java
0 → 100644
+
25
−
0
View file @
105f3a03
package
com.nisum.omd.dto
;
public
class
WeeklyOrders
{
private
String
orderDate
;
private
Long
orderCount
;
public
String
getOrderDate
()
{
return
orderDate
;
}
public
void
setOrderDate
(
String
orderDate
)
{
this
.
orderDate
=
orderDate
;
}
public
Long
getOrderCount
()
{
return
orderCount
;
}
public
WeeklyOrders
(
String
orderDate
,
Long
orderCount
)
{
super
();
this
.
orderDate
=
orderDate
;
this
.
orderCount
=
orderCount
;
}
public
void
setOrderCount
(
Long
orderCount
)
{
this
.
orderCount
=
orderCount
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment