From 4063dc6369224605ed9fe03ef4d43d5bd1bf6359 Mon Sep 17 00:00:00 2001 From: gopi17701 <41270090+gopi17701@users.noreply.github.com> Date: Tue, 17 Jul 2018 22:31:21 -0400 Subject: [PATCH] Add files via upload --- .../java/com/astute/model/InvoicePayment.java | 71 +++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 AstuteSystem/src/main/java/com/astute/model/InvoicePayment.java diff --git a/AstuteSystem/src/main/java/com/astute/model/InvoicePayment.java b/AstuteSystem/src/main/java/com/astute/model/InvoicePayment.java new file mode 100644 index 0000000..db1d5aa --- /dev/null +++ b/AstuteSystem/src/main/java/com/astute/model/InvoicePayment.java @@ -0,0 +1,71 @@ +package com.astute.model; + +import java.sql.Date; + +public class InvoicePayment { + String invoiceNum; + int invoicePaymentId; + int paymentTypeId; + String paymentType; + Date paymentDate; + + + Double invoiceAmount; + + public InvoicePayment(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; + } +}