19 lines
401 B
PHP
19 lines
401 B
PHP
<?php
|
|
|
|
namespace App\Entities;
|
|
|
|
use App\Entities\CommonEntity;
|
|
class MapurlEntity extends CommonEntity
|
|
{
|
|
protected $datamap = [];
|
|
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
|
|
protected $casts = [];
|
|
|
|
public function getPrimaryKey(){
|
|
return $this->attributes['uid'];
|
|
}
|
|
public function getTitle(){
|
|
return $this->attributes['oldurl'];
|
|
}
|
|
}
|