上线前新需求:加客服接口 公会退出 费用发给公会长

This commit is contained in:
2026-01-14 17:25:37 +08:00
parent 06983dfe46
commit 767f51d1d6
3 changed files with 18 additions and 3 deletions

View File

@@ -48,4 +48,14 @@ class Banner extends controller
$reslut = model('Banner')->banner_list($show_type);
return V(1,'操作成功', $reslut);
}
//平台客服获取接口
public function app_customer_service()
{
$platform_customer_service = get_system_config_value('platform_customer_service');
$reslut = [
'user_id' => $platform_customer_service
];
return V(1, '成功', $reslut);
}
}