22 lines
414 B
PHP
22 lines
414 B
PHP
<?php
|
|
|
|
namespace App\Entities\Customer;
|
|
|
|
use App\Models\Customer\ServicePartModel;
|
|
|
|
class ServicePartEntity extends CustomerEntity
|
|
{
|
|
const PK = ServicePartModel::PK;
|
|
const TITLE = ServicePartModel::TITLE;
|
|
|
|
public function getServiceInfo()
|
|
{
|
|
return $this->attributes['erviceinfo_uid'];
|
|
}
|
|
|
|
public function getPartInfo()
|
|
{
|
|
return $this->attributes['partinfo_uid'];
|
|
}
|
|
}
|