dbms/app/Entities/Device/LineEntity.php
2025-05-07 15:57:41 +09:00

17 lines
270 B
PHP

<?php
namespace App\Entities\Device;
use App\Models\Device\LineModel;
class LineEntity extends DeviceEntity
{
const PK = LineModel::PK;
const TITLE = LineModel::TITLE;
public function getAmount()
{
return $this->attributes['amount'];
}
}