Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
29222 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
import java.time.LocalDate;
4
import java.util.List;
5
 
6
public class DispatchNotificationModel {
7
 
8
	private List<String> invoiceNumber;
9
	private Float totalAmount;
10
	private int totalQty;
11
	private int fofoId;
12
	private int providerId;
13
	private LocalDate date;
14
 
15
	public LocalDate getDate() {
16
		return date;
17
	}
18
 
19
	public void setDate(LocalDate date) {
20
		this.date = date;
21
	}
22
 
23
	public int getProviderId() {
24
		return providerId;
25
	}
26
 
27
	public void setProviderId(int providerId) {
28
		this.providerId = providerId;
29
	}
30
 
31
	public int getFofoId() {
32
		return fofoId;
33
	}
34
 
35
	public void setFofoId(int fofoId) {
36
		this.fofoId = fofoId;
37
	}
38
 
39
	public List<String> getInvoiceNumber() {
40
		return invoiceNumber;
41
	}
42
 
43
	public void setInvoiceNumber(List<String> invoiceNumber) {
44
		this.invoiceNumber = invoiceNumber;
45
	}
46
 
47
	public Float getTotalAmount() {
48
		return totalAmount;
49
	}
50
 
51
	public void setTotalAmount(Float totalAmount) {
52
		this.totalAmount = totalAmount;
53
	}
54
 
55
	public int getTotalQty() {
56
		return totalQty;
57
	}
58
 
59
	public void setTotalQty(int totalQty) {
60
		this.totalQty = totalQty;
61
	}
62
 
63
	@Override
64
	public String toString() {
65
		return "DispatchNotificationModel [invoiceNumber=" + invoiceNumber + ", totalAmount=" + totalAmount
66
				+ ", totalQty=" + totalQty + "]";
67
	}
68
 
69
}