Add files via upload

This commit is contained in:
gopi17701 2018-07-24 23:23:57 -04:00 committed by GitHub
parent 879c0fce5d
commit 0cf87cc13f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 12 deletions

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}