From 8d3d26f29160bb6991ced8dc91767f603e52dcb9 Mon Sep 17 00:00:00 2001 From: kshitige Date: Tue, 11 Mar 2025 16:22:13 +0530 Subject: [PATCH] Models --- app/Models/Asset.php | 37 +++++++++++++++++++++++++++++ app/Models/AssetDeviceLink.php | 19 +++++++++++++++ app/Models/Customer.php | 40 +++++++++++++++++++++++++++++++ app/Models/Device.php | 43 ++++++++++++++++++++++++++++++++++ 4 files changed, 139 insertions(+) create mode 100644 app/Models/Asset.php create mode 100644 app/Models/AssetDeviceLink.php create mode 100644 app/Models/Customer.php create mode 100644 app/Models/Device.php diff --git a/app/Models/Asset.php b/app/Models/Asset.php new file mode 100644 index 0000000..8c34919 --- /dev/null +++ b/app/Models/Asset.php @@ -0,0 +1,37 @@ + 'string', + 'tenant_id' => 'string', + 'customer_id' => 'string', + 'asset_profile_id' => 'string', + 'external_id' => 'string', + 'additional_info' => 'array', + ]; +} diff --git a/app/Models/AssetDeviceLink.php b/app/Models/AssetDeviceLink.php new file mode 100644 index 0000000..fd6012d --- /dev/null +++ b/app/Models/AssetDeviceLink.php @@ -0,0 +1,19 @@ + 'string', + 'tenant_id' => 'string', + 'external_id' => 'string', + 'additional_info' => 'array', + ]; +} \ No newline at end of file diff --git a/app/Models/Device.php b/app/Models/Device.php new file mode 100644 index 0000000..1ff718e --- /dev/null +++ b/app/Models/Device.php @@ -0,0 +1,43 @@ + 'string', + 'tenant_id' => 'string', + 'customer_id' => 'string', + 'device_profile_id' => 'string', + 'firmware_id' => 'string', + 'software_id' => 'string', + 'external_id' => 'string', + 'additional_info' => 'array', + 'device_data' => 'array', + ]; +}