仓库初始化

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,32 @@
<?php
namespace Yzh\Model\Apiusersign;
use Yzh\Model\BaseRequest;
/**
* 获取协议预览 URL 请求
* Class ApiUseSignContractRequest
*/
class ApiUseSignContractRequest extends BaseRequest
{
/**
* 平台企业 ID
* @var string
*/
public $dealer_id;
/**
* 综合服务主体 ID
* @var string
*/
public $broker_id;
public function __construct($params = array())
{
foreach (array_keys(get_object_vars($this)) as $property) {
if (isset($params[$property])) {
$this->{$property} = $params[$property];
}
}
}
}

View File

@@ -0,0 +1,33 @@
<?php
namespace Yzh\Model\Apiusersign;
use Yzh\Model\BaseResponse;
use Yzh\Model\ResponseInterface;
/**
* 获取协议预览 URL 返回
* Class ApiUseSignContractResponse
*/
class ApiUseSignContractResponse extends BaseResponse implements ResponseInterface
{
/**
* 获取数据对象
* @return ApiUseSignContractResponseData
*/
public function getData()
{
return $this->data;
}
/**
* 设置数据对象
* @param array $data
* @return self
*/
public function setData($data)
{
$this->data = new ApiUseSignContractResponseData($data);
return $this;
}
}

View File

@@ -0,0 +1,60 @@
<?php
namespace Yzh\Model\Apiusersign;
use Yzh\Model\BaseModel;
use Yzh\Model\ResponseDataInterface;
/**
* 获取协议预览 URL 返回
* Class ApiUseSignContractResponseData
*/
class ApiUseSignContractResponseData extends BaseModel implements ResponseDataInterface
{
/**
* 预览跳转 URL
* @var string
*/
protected $url;
/**
* 协议名称
* @var string
*/
protected $title;
/**
* 预览跳转 URL
* @var string $url
*/
public function setUrl($url)
{
$this->url = $url;
}
/**
* 预览跳转 URL
* @return string
*/
public function getUrl()
{
return $this->url;
}
/**
* 协议名称
* @var string $title
*/
public function setTitle($title)
{
$this->title = $title;
}
/**
* 协议名称
* @return string
*/
public function getTitle()
{
return $this->title;
}
}

View File

@@ -0,0 +1,32 @@
<?php
namespace Yzh\Model\Apiusersign;
use Yzh\Model\BaseRequest;
/**
* 获取协议预览 URL 请求 V2
* Class ApiUserSignContractRequest
*/
class ApiUserSignContractRequest extends BaseRequest
{
/**
* 平台企业 ID
* @var string
*/
public $dealer_id;
/**
* 综合服务主体 ID
* @var string
*/
public $broker_id;
public function __construct($params = array())
{
foreach (array_keys(get_object_vars($this)) as $property) {
if (isset($params[$property])) {
$this->{$property} = $params[$property];
}
}
}
}

View File

@@ -0,0 +1,33 @@
<?php
namespace Yzh\Model\Apiusersign;
use Yzh\Model\BaseResponse;
use Yzh\Model\ResponseInterface;
/**
* 获取协议预览 URL 返回 V2
* Class ApiUserSignContractResponse
*/
class ApiUserSignContractResponse extends BaseResponse implements ResponseInterface
{
/**
* 获取数据对象
* @return ApiUserSignContractResponseData
*/
public function getData()
{
return $this->data;
}
/**
* 设置数据对象
* @param array $data
* @return self
*/
public function setData($data)
{
$this->data = new ApiUserSignContractResponseData($data);
return $this;
}
}

View File

@@ -0,0 +1,60 @@
<?php
namespace Yzh\Model\Apiusersign;
use Yzh\Model\BaseModel;
use Yzh\Model\ResponseDataInterface;
/**
* 获取协议预览 URL 返回 V2
* Class ApiUserSignContractResponseData
*/
class ApiUserSignContractResponseData extends BaseModel implements ResponseDataInterface
{
/**
* 预览跳转 URL
* @var string
*/
protected $url;
/**
* 协议名称
* @var string
*/
protected $title;
/**
* 预览跳转 URL
* @var string $url
*/
public function setUrl($url)
{
$this->url = $url;
}
/**
* 预览跳转 URL
* @return string
*/
public function getUrl()
{
return $this->url;
}
/**
* 协议名称
* @var string $title
*/
public function setTitle($title)
{
$this->title = $title;
}
/**
* 协议名称
* @return string
*/
public function getTitle()
{
return $this->title;
}
}

View File

@@ -0,0 +1,47 @@
<?php
namespace Yzh\Model\Apiusersign;
use Yzh\Model\BaseRequest;
/**
* 用户解约(测试账号专用接口)请求
* Class ApiUserSignReleaseRequest
*/
class ApiUserSignReleaseRequest extends BaseRequest
{
/**
* 综合服务主体 ID
* @var string
*/
public $broker_id;
/**
* 平台企业 ID
* @var string
*/
public $dealer_id;
/**
* 姓名
* @var string
*/
public $real_name;
/**
* 证件号码
* @var string
*/
public $id_card;
/**
* 证件类型 idcard身份证 passport护照 mtphkm港澳居民来往内地通行证 mtpt台湾居民往来大陆通行证 rphkm中华人民共和国港澳居民居住证 rpt中华人民共和国台湾居民居住证 fpr外国人永久居留身份证 ffwp中华人民共和国外国人就业许可证书
* @var string
*/
public $card_type;
public function __construct($params = array())
{
foreach (array_keys(get_object_vars($this)) as $property) {
if (isset($params[$property])) {
$this->{$property} = $params[$property];
}
}
}
}

View File

@@ -0,0 +1,33 @@
<?php
namespace Yzh\Model\Apiusersign;
use Yzh\Model\BaseResponse;
use Yzh\Model\ResponseInterface;
/**
* 用户解约(测试账号专用接口)返回
* Class ApiUserSignReleaseResponse
*/
class ApiUserSignReleaseResponse extends BaseResponse implements ResponseInterface
{
/**
* 获取数据对象
* @return ApiUserSignReleaseResponseData
*/
public function getData()
{
return $this->data;
}
/**
* 设置数据对象
* @param array $data
* @return self
*/
public function setData($data)
{
$this->data = new ApiUserSignReleaseResponseData($data);
return $this;
}
}

View File

@@ -0,0 +1,37 @@
<?php
namespace Yzh\Model\Apiusersign;
use Yzh\Model\BaseModel;
use Yzh\Model\ResponseDataInterface;
/**
* 用户解约(测试账号专用接口)返回
* Class ApiUserSignReleaseResponseData
*/
class ApiUserSignReleaseResponseData extends BaseModel implements ResponseDataInterface
{
/**
* 是否解约成功
* @var string
*/
protected $status;
/**
* 是否解约成功
* @var string $status
*/
public function setStatus($status)
{
$this->status = $status;
}
/**
* 是否解约成功
* @return string
*/
public function getStatus()
{
return $this->status;
}
}

View File

@@ -0,0 +1,47 @@
<?php
namespace Yzh\Model\Apiusersign;
use Yzh\Model\BaseRequest;
/**
* 用户签约请求
* Class ApiUserSignRequest
*/
class ApiUserSignRequest extends BaseRequest
{
/**
* 综合服务主体 ID
* @var string
*/
public $broker_id;
/**
* 平台企业 ID
* @var string
*/
public $dealer_id;
/**
* 姓名
* @var string
*/
public $real_name;
/**
* 证件号码
* @var string
*/
public $id_card;
/**
* 证件类型 idcard身份证 passport护照 mtphkm港澳居民来往内地通行证 mtpt台湾居民往来大陆通行证 rphkm中华人民共和国港澳居民居住证 rpt中华人民共和国台湾居民居住证 fpr外国人永久居留身份证 ffwp中华人民共和国外国人就业许可证书
* @var string
*/
public $card_type;
public function __construct($params = array())
{
foreach (array_keys(get_object_vars($this)) as $property) {
if (isset($params[$property])) {
$this->{$property} = $params[$property];
}
}
}
}

View File

@@ -0,0 +1,33 @@
<?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;
}
}

View File

@@ -0,0 +1,37 @@
<?php
namespace Yzh\Model\Apiusersign;
use Yzh\Model\BaseModel;
use Yzh\Model\ResponseDataInterface;
/**
* 用户签约返回
* Class ApiUserSignResponseData
*/
class ApiUserSignResponseData extends BaseModel implements ResponseDataInterface
{
/**
* 是否签约成功
* @var string
*/
protected $status;
/**
* 是否签约成功
* @var string $status
*/
public function setStatus($status)
{
$this->status = $status;
}
/**
* 是否签约成功
* @return string
*/
public function getStatus()
{
return $this->status;
}
}

View File

@@ -0,0 +1,42 @@
<?php
namespace Yzh\Model\Apiusersign;
use Yzh\Model\BaseRequest;
/**
* 获取用户签约状态请求
* Class GetApiUserSignStatusRequest
*/
class GetApiUserSignStatusRequest extends BaseRequest
{
/**
* 平台企业 ID
* @var string
*/
public $dealer_id;
/**
* 综合服务主体 ID
* @var string
*/
public $broker_id;
/**
* 姓名
* @var string
*/
public $real_name;
/**
* 证件号码
* @var string
*/
public $id_card;
public function __construct($params = array())
{
foreach (array_keys(get_object_vars($this)) as $property) {
if (isset($params[$property])) {
$this->{$property} = $params[$property];
}
}
}
}

View File

@@ -0,0 +1,33 @@
<?php
namespace Yzh\Model\Apiusersign;
use Yzh\Model\BaseResponse;
use Yzh\Model\ResponseInterface;
/**
* 获取用户签约状态返回
* Class GetApiUserSignStatusResponse
*/
class GetApiUserSignStatusResponse extends BaseResponse implements ResponseInterface
{
/**
* 获取数据对象
* @return GetApiUserSignStatusResponseData
*/
public function getData()
{
return $this->data;
}
/**
* 设置数据对象
* @param array $data
* @return self
*/
public function setData($data)
{
$this->data = new GetApiUserSignStatusResponseData($data);
return $this;
}
}

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;
}
}