diff --git a/src/models/ReserveResultPojo.js b/src/models/ReserveResultPojo.js index b26f824..855a81b 100644 --- a/src/models/ReserveResultPojo.js +++ b/src/models/ReserveResultPojo.js @@ -13,6 +13,7 @@ class ReserveResultPojo { this.email = mail; this.type = type; this.source_from = "" + this.created_at = new Date().toLocaleString() } to_mongo_dict() { @@ -25,7 +26,8 @@ class ReserveResultPojo { passport: this.passportNumber, url: this.url, store_type: this.storeType, - source_from: this.source_from + source_from: this.source_from, + created_at: this.created_at } }