mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-04 20:09:40 +01:00
24 lines
413 B
PHP
24 lines
413 B
PHP
<?php
|
|
|
|
namespace Modules\TipiIntervento\API\v1;
|
|
|
|
use API\Interfaces\RetrieveInterface;
|
|
|
|
class TipiInterventi implements RetrieveInterface
|
|
{
|
|
public function retrieve($request)
|
|
{
|
|
$table = 'in_tipiintervento';
|
|
|
|
$select = [
|
|
'*',
|
|
'id' => 'idtipointervento',
|
|
];
|
|
|
|
return [
|
|
'select' => $select,
|
|
'table' => $table,
|
|
];
|
|
}
|
|
}
|