Files
2026-03-14 16:20:49 +08:00

15 lines
295 B
PHP

<?php
namespace app\common\model\teamaster;
use app\common\model\BaseModel;
class TeamasterCollect extends BaseModel
{
public function teamaster()
{
return $this->hasMany('teamaster', 'id', 'teamaster_id')
->where("del",0)
->where('status', 1);
}
}