Commit 105f3a03 authored by Ramakanth Dhane's avatar Ramakanth Dhane

Added weeklyorders DTO

parent 382539ab
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;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment