CP 相关

This commit is contained in:
2025-11-14 15:26:04 +08:00
parent cb9c901b35
commit 2fd11dcab7
3 changed files with 40 additions and 2 deletions

View File

@@ -8,9 +8,11 @@ use think\Db;
class UserCp extends BaseCom
{
//检测是否送了一个cp礼物
public function checkCp()
//Cp 空间
public function cpZone()
{
$reslut = model('UserCp')->cpZone($this->uid);
return V($reslut['code'], $reslut['msg'], $reslut['data']);
}
}