13 lines
237 B
PHP
13 lines
237 B
PHP
<?php
|
|
|
|
namespace App\Entities\Part;
|
|
|
|
use App\Models\Part\SwitchModel;
|
|
|
|
class SwitchEntity extends PartEntity
|
|
{
|
|
const PK = SwitchModel::PK;
|
|
const TITLE = SwitchModel::TITLE;
|
|
const DEFAULT_STATUS = STATUS['AVAILABLE'];
|
|
}
|