This commit is contained in:
2025-10-20 10:02:41 +08:00
parent a4858d47fc
commit dc0a271adf
2805 changed files with 451240 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<?php
namespace Yzh\Model\UserCollect;
use Yzh\Model\BaseResponse;
use Yzh\Model\ResponseInterface;
/**
* 获取收集手机号码页面返回
* Class GetUserCollectPhoneUrlResponse
*/
class GetUserCollectPhoneUrlResponse extends BaseResponse implements ResponseInterface
{
/**
* 获取数据对象
* @return GetUserCollectPhoneUrlResponseData
*/
public function getData()
{
return $this->data;
}
/**
* 设置数据对象
* @param array $data
* @return self
*/
public function setData($data)
{
$this->data = new GetUserCollectPhoneUrlResponseData($data);
return $this;
}
}