仓库初始化

This commit is contained in:
2025-08-13 10:43:56 +08:00
commit e8f9b46680
5180 changed files with 859303 additions and 0 deletions

View File

@@ -0,0 +1,60 @@
<?php
namespace Yzh\Model\Apiusersign;
use Yzh\Model\BaseModel;
use Yzh\Model\ResponseDataInterface;
/**
* 获取用户签约状态返回
* Class GetApiUserSignStatusResponseData
*/
class GetApiUserSignStatusResponseData extends BaseModel implements ResponseDataInterface
{
/**
* 签约时间
* @var string
*/
protected $signed_at;
/**
* 用户签约状态
* @var string
*/
protected $status;
/**
* 签约时间
* @var string $signed_at
*/
public function setSignedAt($signed_at)
{
$this->signed_at = $signed_at;
}
/**
* 签约时间
* @return string
*/
public function getSignedAt()
{
return $this->signed_at;
}
/**
* 用户签约状态
* @var string $status
*/
public function setStatus($status)
{
$this->status = $status;
}
/**
* 用户签约状态
* @return string
*/
public function getStatus()
{
return $this->status;
}
}