From: Roland Häder <roland@mxchange.org>
Date: Sun, 15 Oct 2017 11:35:39 +0000 (+0200)
Subject: Continued a bit:
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=047dcae7e6a10e2ccddf59da169f75b830296aea;p=jfinancials-core.git

Continued a bit:
- changed temporal type to TIMESTAMP, let's also include time of issue as it is
  often included on the receipt

Signed-off-by: Roland Häder <roland@mxchange.org>
---

diff --git a/src/org/mxchange/jfinancials/model/receipt/FinancialReceipt.java b/src/org/mxchange/jfinancials/model/receipt/FinancialReceipt.java
index a68dbcf..44607e7 100644
--- a/src/org/mxchange/jfinancials/model/receipt/FinancialReceipt.java
+++ b/src/org/mxchange/jfinancials/model/receipt/FinancialReceipt.java
@@ -100,7 +100,7 @@ public class FinancialReceipt implements BillableReceipt {
 	 * When this receipt has been issued
 	 */
 	@Basic (optional = false)
-	@Temporal (TemporalType.DATE)
+	@Temporal (TemporalType.TIMESTAMP)
 	@Column (name = "receipt_issued", nullable = false)
 	private Date receiptIssued;