1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-18 12:30:35 +01:00

16 lines
211 B
PHP
Raw Normal View History

2018-12-29 14:24:27 +01:00
<?php
namespace Modules\DDT;
use Common\Model;
class Tipo extends Model
{
protected $table = 'dt_tipiddt';
public function ddt()
2018-12-29 14:24:27 +01:00
{
return $this->hasMany(DDT::class, 'idtipoddt');
}
}