12 lines
215 B
PHP
12 lines
215 B
PHP
<?php
|
|
|
|
namespace App\Entities\Customer;
|
|
|
|
use App\Models\Customer\ServicePartModel;
|
|
|
|
class ServicePartEntity extends CustomerEntity
|
|
{
|
|
const PK = ServicePartModel::PK;
|
|
const TITLE = ServicePartModel::TITLE;
|
|
}
|