mirror of
https://github.com/dyiop/astute.git
synced 2025-04-06 21:30:20 -04:00
Add files via upload
This commit is contained in:
parent
879c0fce5d
commit
0cf87cc13f
|
@ -1,10 +1,8 @@
|
||||||
package com.astute.requests;
|
package com.astute.requests;
|
||||||
|
|
||||||
import java.sql.Date;
|
|
||||||
|
|
||||||
public class InvoiceMasterRequest {
|
public class InvoiceMasterRequest {
|
||||||
String invoiceNumber;
|
String invoiceNumber;
|
||||||
Date invoiceDate;
|
String invoiceDate;
|
||||||
String poNum;
|
String poNum;
|
||||||
int pmtStatus;
|
int pmtStatus;
|
||||||
Double billAmt;
|
Double billAmt;
|
||||||
|
@ -21,11 +19,11 @@ public class InvoiceMasterRequest {
|
||||||
this.invoiceNumber = invoiceNumber;
|
this.invoiceNumber = invoiceNumber;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Date getInvoiceDate() {
|
public String getInvoiceDate() {
|
||||||
return invoiceDate;
|
return invoiceDate;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setInvoiceDate(Date invoiceDate) {
|
public void setInvoiceDate(String invoiceDate) {
|
||||||
this.invoiceDate = invoiceDate;
|
this.invoiceDate = invoiceDate;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,10 +7,10 @@ public class InvoicePaymentRequest {
|
||||||
int invoicePaymentId;
|
int invoicePaymentId;
|
||||||
int paymentTypeId;
|
int paymentTypeId;
|
||||||
String paymentType;
|
String paymentType;
|
||||||
Date paymentDate;
|
String paymentDate;
|
||||||
Double invoiceAmount;
|
Double invoiceAmount;
|
||||||
|
|
||||||
public InvoicePaymentRequest(String invoiceNum, int invoicePaymentId, int paymentTypeId, String paymentType, Date paymentDate, Double invoiceAmount) {
|
public InvoicePaymentRequest(String invoiceNum, int invoicePaymentId, int paymentTypeId, String paymentType, String paymentDate, Double invoiceAmount) {
|
||||||
this.invoiceNum = invoiceNum;
|
this.invoiceNum = invoiceNum;
|
||||||
this.invoicePaymentId = invoicePaymentId;
|
this.invoicePaymentId = invoicePaymentId;
|
||||||
this.paymentTypeId = paymentTypeId;
|
this.paymentTypeId = paymentTypeId;
|
||||||
|
@ -51,11 +51,11 @@ public class InvoicePaymentRequest {
|
||||||
this.paymentType = paymentType;
|
this.paymentType = paymentType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Date getPaymentDate() {
|
public String getPaymentDate() {
|
||||||
return paymentDate;
|
return paymentDate;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPaymentDate(Date paymentDate) {
|
public void setPaymentDate(String paymentDate) {
|
||||||
this.paymentDate = paymentDate;
|
this.paymentDate = paymentDate;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ public class POMasterRequest {
|
||||||
|
|
||||||
String poNum;
|
String poNum;
|
||||||
String contractNum;
|
String contractNum;
|
||||||
Date PODate;
|
String PODate;
|
||||||
Double contractAmt;
|
Double contractAmt;
|
||||||
Integer customerId;
|
Integer customerId;
|
||||||
String astuteProjectNumber;
|
String astuteProjectNumber;
|
||||||
|
@ -27,11 +27,11 @@ public class POMasterRequest {
|
||||||
this.contractNum = contractNum;
|
this.contractNum = contractNum;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Date getPODate() {
|
public String getPODate() {
|
||||||
return PODate;
|
return PODate;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPODate(Date PODate) {
|
public void setPODate(String PODate) {
|
||||||
this.PODate = PODate;
|
this.PODate = PODate;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user