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