15 lines
208 B
PHP
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);
|
|
}
|
|
} |