Files
midi-php/extend/Yzh/Model/Authentication/UserWhiteCheckResponseData.php
2025-08-13 10:43:56 +08:00

35 lines
564 B
PHP

<?php
namespace Yzh\Model\Authentication;
use Yzh\Model\BaseModel;
use Yzh\Model\ResponseDataInterface;
/**
* 查看用户是否在非居民身份证验证名单中返回
* Class UserWhiteCheckResponseData
*/
class UserWhiteCheckResponseData extends BaseModel implements ResponseDataInterface
{
/**
* @var bool
*/
protected $ok;
/**
* @var bool $ok
*/
public function setOk($ok)
{
$this->ok = $ok;
}
/**
* @return bool
*/
public function getOk()
{
return $this->ok;
}
}