diff options
author | Devian <devianleong@gmail.com> | 2021-05-05 20:52:52 +0800 |
---|---|---|
committer | Devian <devianleong@gmail.com> | 2021-05-05 20:52:52 +0800 |
commit | fbb16a120ec7fa72f9757d4c7ffb1cfcbe301275 (patch) | |
tree | a0d8017382b98d3b57ce17d2cc78c6f2d750cdaf /src/Entity | |
parent | 8e87f91eb09fa8725b35789d9e692a9c46ec42b7 (diff) |
Update1.0.13
Diffstat (limited to 'src/Entity')
-rw-r--r-- | src/Entity/ScoTracking.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Entity/ScoTracking.php b/src/Entity/ScoTracking.php index f15231f..64e83b2 100644 --- a/src/Entity/ScoTracking.php +++ b/src/Entity/ScoTracking.php @@ -9,6 +9,7 @@ use Carbon\Carbon; class ScoTracking { public $userId; + public $uuid; public $sco; public $scoreRaw; public $scoreMin; @@ -40,6 +41,16 @@ class ScoTracking $this->userId = $userId; } + public function getUuid() + { + return $this->uuid; + } + + public function setUuid($uuid) + { + $this->uuid = $uuid; + } + /** * @return Sco */ |