工会-我的工会页面接口提交

This commit is contained in:
2025-11-19 11:19:34 +08:00
parent b6ed0ff157
commit a49681a76d
2 changed files with 65 additions and 2 deletions

View File

@@ -216,5 +216,14 @@ class Guild extends BaseCom
return V($reslut['code'],$reslut['msg'], $reslut['data']);
}
/*
* 我的工会
*
*/
public function my_guild(){
$uid = $this->uid;
$reslut = model('Guild')->my_guild($uid);
return V($reslut['code'],$reslut['msg'], $reslut['data']);
}
}