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
13ed4cedd8
commit
94cdace84d
|
@ -0,0 +1,69 @@
|
||||||
|
package com.astute.requests;
|
||||||
|
|
||||||
|
import java.sql.Date;
|
||||||
|
|
||||||
|
public class InvoicePaymentRequest {
|
||||||
|
String invoiceNum;
|
||||||
|
int invoicePaymentId;
|
||||||
|
int paymentTypeId;
|
||||||
|
String paymentType;
|
||||||
|
Date paymentDate;
|
||||||
|
Double invoiceAmount;
|
||||||
|
|
||||||
|
public InvoicePaymentRequest(String invoiceNum, int invoicePaymentId, int paymentTypeId, String paymentType, Date paymentDate, Double invoiceAmount) {
|
||||||
|
this.invoiceNum = invoiceNum;
|
||||||
|
this.invoicePaymentId = invoicePaymentId;
|
||||||
|
this.paymentTypeId = paymentTypeId;
|
||||||
|
this.paymentType = paymentType;
|
||||||
|
this.paymentDate = paymentDate;
|
||||||
|
this.invoiceAmount = invoiceAmount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getInvoiceNum() {
|
||||||
|
return invoiceNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setInvoiceNum(String invoiceNum) {
|
||||||
|
this.invoiceNum = invoiceNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getInvoicePaymentId() {
|
||||||
|
return invoicePaymentId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setInvoicePaymentId(int invoicePaymentId) {
|
||||||
|
this.invoicePaymentId = invoicePaymentId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getPaymentTypeId() {
|
||||||
|
return paymentTypeId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPaymentTypeId(int paymentTypeId) {
|
||||||
|
this.paymentTypeId = paymentTypeId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPaymentType() {
|
||||||
|
return paymentType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPaymentType(String paymentType) {
|
||||||
|
this.paymentType = paymentType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getPaymentDate() {
|
||||||
|
return paymentDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPaymentDate(Date paymentDate) {
|
||||||
|
this.paymentDate = paymentDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Double getInvoiceAmount() {
|
||||||
|
return invoiceAmount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setInvoiceAmount(Double invoiceAmount) {
|
||||||
|
this.invoiceAmount = invoiceAmount;
|
||||||
|
}
|
||||||
|
}
|
|
@ -3,16 +3,19 @@ package com.astute.requests;
|
||||||
import java.sql.Date;
|
import java.sql.Date;
|
||||||
|
|
||||||
public class PODetailRequest {
|
public class PODetailRequest {
|
||||||
String PONum;
|
String poNum;
|
||||||
int lineItemNo;
|
int lineItemNo;
|
||||||
|
String serviceDesc;
|
||||||
|
int feeTypeId;
|
||||||
|
Double qty;
|
||||||
|
int serviceTypeId;
|
||||||
|
|
||||||
public String getPONum() {
|
public String getPoNum() {
|
||||||
|
return poNum;
|
||||||
return PONum;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPONum(String PONum) {
|
public void setPoNum(String poNum) {
|
||||||
this.PONum = PONum;
|
this.poNum = poNum;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getLineItemNo() {
|
public int getLineItemNo() {
|
||||||
|
@ -54,27 +57,4 @@ public class PODetailRequest {
|
||||||
public void setServiceTypeId(int serviceTypeId) {
|
public void setServiceTypeId(int serviceTypeId) {
|
||||||
this.serviceTypeId = serviceTypeId;
|
this.serviceTypeId = serviceTypeId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getSchedule() {
|
|
||||||
return schedule;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSchedule(String schedule) {
|
|
||||||
this.schedule = schedule;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date getDeliverBy() {
|
|
||||||
return deliverBy;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDeliverBy(Date deliverBy) {
|
|
||||||
this.deliverBy = deliverBy;
|
|
||||||
}
|
|
||||||
|
|
||||||
String serviceDesc;
|
|
||||||
int feeTypeId;
|
|
||||||
Double qty;
|
|
||||||
int serviceTypeId;
|
|
||||||
String schedule;
|
|
||||||
Date deliverBy;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user