]> git.mxchange.org Git - jfinancials-core.git/commitdiff
Continued a bit:
authorRoland Häder <roland@mxchange.org>
Sun, 15 Oct 2017 11:35:39 +0000 (13:35 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 15 Oct 2017 11:35:39 +0000 (13:35 +0200)
- 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>
src/org/mxchange/jfinancials/model/receipt/FinancialReceipt.java

index a68dbcfcc222f64bfba1683d5b893e5679c81121..44607e7a4e8ff75278956daf012c9a3412053452 100644 (file)
@@ -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;