2018-12-29 14:24:27 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Modules\DDT;
|
|
|
|
|
|
|
|
use Common\Model;
|
|
|
|
|
|
|
|
class Stato extends Model
|
|
|
|
{
|
|
|
|
protected $table = 'dt_statiddt';
|
|
|
|
|
2019-01-01 11:39:20 +01:00
|
|
|
public function ddt()
|
2018-12-29 14:24:27 +01:00
|
|
|
{
|
|
|
|
return $this->hasMany(DDT::class, 'idstatoddt');
|
|
|
|
}
|
|
|
|
}
|