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