师徒任务跳转房间

This commit is contained in:
2025-12-11 13:00:42 +08:00
parent 60134a68f7
commit c7d3aa4059
3 changed files with 108 additions and 0 deletions

View File

@@ -138,4 +138,10 @@ class Sign extends BaseCom
return V(1, '成功', $skill_list);
}
//获取首次被签约且在约期内的徒弟列表
public function get_first_sign_student_list()
{
$reslut = model('Sign')->get_first_sign_student_list($this->uid);
return V($reslut['code'], $reslut['msg'], $reslut['data']);
}
}