add current ip to db

This commit is contained in:
2024-03-05 15:01:51 +01:00
parent 2dd7abcb51
commit 25ce0eec2d
2 changed files with 23 additions and 12 deletions
+3 -1
View File
@@ -17,6 +17,7 @@ class ReserveResultPojo {
this.source_from = ""
this.serial = ""
this.hostName = hostName
this.currentIp = ""
this.created_at = new Date().toLocaleString()
}
@@ -33,7 +34,8 @@ class ReserveResultPojo {
source_from: this.source_from,
serial: this.serial,
created_at: this.created_at,
hostName: this.hostName
hostName: this.hostName,
current_ip: this.currentIp
}
}