1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-27 08:12:47 +01:00
openstamanager/modules/ordini/src/Stato.php
2019-01-01 11:39:20 +01:00

16 lines
229 B
PHP

<?php
namespace Modules\Ordini;
use Common\Model;
class Stato extends Model
{
protected $table = 'or_statiordine';
public function ordini()
{
return $this->hasMany(Ordine::class, 'idstatoordine');
}
}