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

12 lines
210 B
PHP
Raw Normal View History

2023-08-14 09:51:34 +00:00
<?php
namespace app\common\model;
use app\common\basics\Models;
class Demand extends Models
{
2023-08-15 06:36:06 +00:00
public function reports()
{
return $this->hasMany(DemandReport::class, 'demand_id', 'id');
}
2023-08-14 09:51:34 +00:00
}