Files
heping-api/app/model/Student.php
2022-09-09 16:35:41 +08:00

15 lines
208 B
PHP

<?php
namespace app\model;
use think\Model;
use think\model\relation\HasMany;
class Student extends Model
{
public function orders(): HasMany
{
return $this->hasMany(Order::class);
}
}