-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDataColl.java
66 lines (62 loc) · 1.8 KB
/
DataColl.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Dell
*/
class DataColl {
private String OrderDate,BillNumber,Days,Amount,RecievedDate,RecievedAmount,ExcessDays,GRNumber,GRDate,GRAmount,DateDecided;
public DataColl(String OrderDate,String BillNumber,String Days,String Amount,String RecievedDate,String RecievedAmount,String ExcessDays,String GRNumber,String GRDate,String GRAmount,String DateDecided){
//this.PartyName=PartyName;
this.OrderDate=OrderDate;
this.BillNumber=BillNumber;
this.Days=Days;
this.Amount=Amount;
this.RecievedDate=RecievedDate;
this.RecievedAmount=RecievedAmount;
this.ExcessDays=ExcessDays;
this.GRNumber=GRNumber;
this.GRDate=GRDate;
this.GRAmount=GRAmount;
this.DateDecided=DateDecided;
}
/*public String getPartyName(){
return PartyName;
}*/
public String getOrderDate(){
return OrderDate;
}
public String getBillNumber(){
return BillNumber;
}
public String getDays(){
return Days;
}
public String getAmount(){
return Amount;
}
public String getRecdDate(){
return RecievedDate;
}
public String getRecdAmt(){
return RecievedAmount;
}
public String xsDays(){
return ExcessDays;
}
public String getGRNumber(){
return GRNumber;
}
public String getGRDate(){
return GRDate;
}
public String getGRAmount(){
return GRAmount;
}
public String getDateDecided(){
return DateDecided;
}
}