Files
yusheng-php/extend/Yzh/Model/Apiusersign/ApiUserSignResponse.php

34 lines
609 B
PHP
Raw Normal View History

2025-08-07 20:21:47 +08:00
<?php
namespace Yzh\Model\Apiusersign;
use Yzh\Model\BaseResponse;
use Yzh\Model\ResponseInterface;
/**
* 用户签约返回
* Class ApiUserSignResponse
*/
class ApiUserSignResponse extends BaseResponse implements ResponseInterface
{
/**
* 获取数据对象
* @return ApiUserSignResponseData
*/
public function getData()
{
return $this->data;
}
/**
* 设置数据对象
* @param array $data
* @return self
*/
public function setData($data)
{
$this->data = new ApiUserSignResponseData($data);
return $this;
}
}