dbms/app/Entities/Equipment/Link/SoftwareEntity.php
2025-05-29 16:47:46 +09:00

16 lines
328 B
PHP

<?php
namespace App\Entities\Equipment\Link;
use App\Models\Equipment\Link\SoftwareModel;
class SoftwareEntity extends LinkEntity
{
const PK = SoftwareModel::PK;
const TITLE = SoftwareModel::TITLE;
public function getAdapterInfoUID(): string
{
return $this->attributes['softwareinfo_uid'];
}
}