glhcp/server/app/common/model/Demand.php

12 lines
210 B
PHP

<?php
namespace app\common\model;
use app\common\basics\Models;
class Demand extends Models
{
public function reports()
{
return $this->hasMany(DemandReport::class, 'demand_id', 'id');
}
}