代码初始化
This commit is contained in:
52
extend/Yzh/Model/Bizlicgxv2h5/GxV2H5GetAicStatusRequest.php
Normal file
52
extend/Yzh/Model/Bizlicgxv2h5/GxV2H5GetAicStatusRequest.php
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Bizlicgxv2h5;
|
||||
|
||||
use Yzh\Model\BaseRequest;
|
||||
|
||||
/**
|
||||
* 查询个体工商户状态请求
|
||||
* Class GxV2H5GetAicStatusRequest
|
||||
*/
|
||||
class GxV2H5GetAicStatusRequest extends BaseRequest
|
||||
{
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_id;
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @var string
|
||||
*/
|
||||
public $broker_id;
|
||||
/**
|
||||
* 用户唯一标识
|
||||
* @var string
|
||||
*/
|
||||
public $open_id;
|
||||
/**
|
||||
* 姓名
|
||||
* @var string
|
||||
*/
|
||||
public $real_name;
|
||||
/**
|
||||
* 身份证号码
|
||||
* @var string
|
||||
*/
|
||||
public $id_card;
|
||||
/**
|
||||
* 平台企业端的用户 ID
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_user_id;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
foreach (array_keys(get_object_vars($this)) as $property) {
|
||||
if (isset($params[$property])) {
|
||||
$this->{$property} = $params[$property];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
33
extend/Yzh/Model/Bizlicgxv2h5/GxV2H5GetAicStatusResponse.php
Normal file
33
extend/Yzh/Model/Bizlicgxv2h5/GxV2H5GetAicStatusResponse.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Bizlicgxv2h5;
|
||||
|
||||
use Yzh\Model\BaseResponse;
|
||||
use Yzh\Model\ResponseInterface;
|
||||
|
||||
/**
|
||||
* 查询个体工商户状态返回
|
||||
* Class GxV2H5GetAicStatusResponse
|
||||
*/
|
||||
class GxV2H5GetAicStatusResponse extends BaseResponse implements ResponseInterface
|
||||
{
|
||||
/**
|
||||
* 获取数据对象
|
||||
* @return GxV2H5GetAicStatusResponseData
|
||||
*/
|
||||
public function getData()
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置数据对象
|
||||
* @param array $data
|
||||
* @return self
|
||||
*/
|
||||
public function setData($data)
|
||||
{
|
||||
$this->data = new GxV2H5GetAicStatusResponseData($data);
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
221
extend/Yzh/Model/Bizlicgxv2h5/GxV2H5GetAicStatusResponseData.php
Normal file
221
extend/Yzh/Model/Bizlicgxv2h5/GxV2H5GetAicStatusResponseData.php
Normal file
@@ -0,0 +1,221 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Bizlicgxv2h5;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
use Yzh\Model\ResponseDataInterface;
|
||||
|
||||
/**
|
||||
* 查询个体工商户状态返回
|
||||
* Class GxV2H5GetAicStatusResponseData
|
||||
*/
|
||||
class GxV2H5GetAicStatusResponseData extends BaseModel implements ResponseDataInterface
|
||||
{
|
||||
/**
|
||||
* 用户注册状态
|
||||
* @var int32
|
||||
*/
|
||||
protected $status;
|
||||
/**
|
||||
* 注册状态描述
|
||||
* @var string
|
||||
*/
|
||||
protected $status_message;
|
||||
/**
|
||||
* 注册详情状态码
|
||||
* @var int32
|
||||
*/
|
||||
protected $status_detail;
|
||||
/**
|
||||
* 注册详情状态码描述
|
||||
* @var string
|
||||
*/
|
||||
protected $status_detail_message;
|
||||
/**
|
||||
* 注册发起时间
|
||||
* @var string
|
||||
*/
|
||||
protected $applyed_at;
|
||||
/**
|
||||
* 注册完成时间
|
||||
* @var string
|
||||
*/
|
||||
protected $registed_at;
|
||||
/**
|
||||
* 统一社会信用代码
|
||||
* @var string
|
||||
*/
|
||||
protected $uscc;
|
||||
/**
|
||||
* 身份证号码
|
||||
* @var string
|
||||
*/
|
||||
protected $id_card;
|
||||
/**
|
||||
* 姓名
|
||||
* @var string
|
||||
*/
|
||||
protected $real_name;
|
||||
|
||||
/**
|
||||
* 用户注册状态
|
||||
* @var int32 $status
|
||||
*/
|
||||
public function setStatus($status)
|
||||
{
|
||||
$this->status = $status;
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户注册状态
|
||||
* @return int32
|
||||
*/
|
||||
public function getStatus()
|
||||
{
|
||||
return $this->status;
|
||||
}
|
||||
|
||||
/**
|
||||
* 注册状态描述
|
||||
* @var string $status_message
|
||||
*/
|
||||
public function setStatusMessage($status_message)
|
||||
{
|
||||
$this->status_message = $status_message;
|
||||
}
|
||||
|
||||
/**
|
||||
* 注册状态描述
|
||||
* @return string
|
||||
*/
|
||||
public function getStatusMessage()
|
||||
{
|
||||
return $this->status_message;
|
||||
}
|
||||
|
||||
/**
|
||||
* 注册详情状态码
|
||||
* @var int32 $status_detail
|
||||
*/
|
||||
public function setStatusDetail($status_detail)
|
||||
{
|
||||
$this->status_detail = $status_detail;
|
||||
}
|
||||
|
||||
/**
|
||||
* 注册详情状态码
|
||||
* @return int32
|
||||
*/
|
||||
public function getStatusDetail()
|
||||
{
|
||||
return $this->status_detail;
|
||||
}
|
||||
|
||||
/**
|
||||
* 注册详情状态码描述
|
||||
* @var string $status_detail_message
|
||||
*/
|
||||
public function setStatusDetailMessage($status_detail_message)
|
||||
{
|
||||
$this->status_detail_message = $status_detail_message;
|
||||
}
|
||||
|
||||
/**
|
||||
* 注册详情状态码描述
|
||||
* @return string
|
||||
*/
|
||||
public function getStatusDetailMessage()
|
||||
{
|
||||
return $this->status_detail_message;
|
||||
}
|
||||
|
||||
/**
|
||||
* 注册发起时间
|
||||
* @var string $applyed_at
|
||||
*/
|
||||
public function setApplyedAt($applyed_at)
|
||||
{
|
||||
$this->applyed_at = $applyed_at;
|
||||
}
|
||||
|
||||
/**
|
||||
* 注册发起时间
|
||||
* @return string
|
||||
*/
|
||||
public function getApplyedAt()
|
||||
{
|
||||
return $this->applyed_at;
|
||||
}
|
||||
|
||||
/**
|
||||
* 注册完成时间
|
||||
* @var string $registed_at
|
||||
*/
|
||||
public function setRegistedAt($registed_at)
|
||||
{
|
||||
$this->registed_at = $registed_at;
|
||||
}
|
||||
|
||||
/**
|
||||
* 注册完成时间
|
||||
* @return string
|
||||
*/
|
||||
public function getRegistedAt()
|
||||
{
|
||||
return $this->registed_at;
|
||||
}
|
||||
|
||||
/**
|
||||
* 统一社会信用代码
|
||||
* @var string $uscc
|
||||
*/
|
||||
public function setUscc($uscc)
|
||||
{
|
||||
$this->uscc = $uscc;
|
||||
}
|
||||
|
||||
/**
|
||||
* 统一社会信用代码
|
||||
* @return string
|
||||
*/
|
||||
public function getUscc()
|
||||
{
|
||||
return $this->uscc;
|
||||
}
|
||||
|
||||
/**
|
||||
* 身份证号码
|
||||
* @var string $id_card
|
||||
*/
|
||||
public function setIdCard($id_card)
|
||||
{
|
||||
$this->id_card = $id_card;
|
||||
}
|
||||
|
||||
/**
|
||||
* 身份证号码
|
||||
* @return string
|
||||
*/
|
||||
public function getIdCard()
|
||||
{
|
||||
return $this->id_card;
|
||||
}
|
||||
|
||||
/**
|
||||
* 姓名
|
||||
* @var string $real_name
|
||||
*/
|
||||
public function setRealName($real_name)
|
||||
{
|
||||
$this->real_name = $real_name;
|
||||
}
|
||||
|
||||
/**
|
||||
* 姓名
|
||||
* @return string
|
||||
*/
|
||||
public function getRealName()
|
||||
{
|
||||
return $this->real_name;
|
||||
}
|
||||
}
|
||||
62
extend/Yzh/Model/Bizlicgxv2h5/GxV2H5GetStartUrlRequest.php
Normal file
62
extend/Yzh/Model/Bizlicgxv2h5/GxV2H5GetStartUrlRequest.php
Normal file
@@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Bizlicgxv2h5;
|
||||
|
||||
use Yzh\Model\BaseRequest;
|
||||
|
||||
/**
|
||||
* 预启动请求
|
||||
* Class GxV2H5GetStartUrlRequest
|
||||
*/
|
||||
class GxV2H5GetStartUrlRequest extends BaseRequest
|
||||
{
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_id;
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @var string
|
||||
*/
|
||||
public $broker_id;
|
||||
/**
|
||||
* 平台企业端的用户 ID
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_user_id;
|
||||
/**
|
||||
* 客户端类型
|
||||
* @var int32
|
||||
*/
|
||||
public $client_type;
|
||||
/**
|
||||
* 异步通知 URL
|
||||
* @var string
|
||||
*/
|
||||
public $notify_url;
|
||||
/**
|
||||
* H5 页面主题颜色
|
||||
* @var string
|
||||
*/
|
||||
public $color;
|
||||
/**
|
||||
* 跳转 URL
|
||||
* @var string
|
||||
*/
|
||||
public $return_url;
|
||||
/**
|
||||
* H5 页面 Title
|
||||
* @var int32
|
||||
*/
|
||||
public $customer_title;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
foreach (array_keys(get_object_vars($this)) as $property) {
|
||||
if (isset($params[$property])) {
|
||||
$this->{$property} = $params[$property];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
33
extend/Yzh/Model/Bizlicgxv2h5/GxV2H5GetStartUrlResponse.php
Normal file
33
extend/Yzh/Model/Bizlicgxv2h5/GxV2H5GetStartUrlResponse.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Bizlicgxv2h5;
|
||||
|
||||
use Yzh\Model\BaseResponse;
|
||||
use Yzh\Model\ResponseInterface;
|
||||
|
||||
/**
|
||||
* 预启动返回
|
||||
* Class GxV2H5GetStartUrlResponse
|
||||
*/
|
||||
class GxV2H5GetStartUrlResponse extends BaseResponse implements ResponseInterface
|
||||
{
|
||||
/**
|
||||
* 获取数据对象
|
||||
* @return GxV2H5GetStartUrlResponseData
|
||||
*/
|
||||
public function getData()
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置数据对象
|
||||
* @param array $data
|
||||
* @return self
|
||||
*/
|
||||
public function setData($data)
|
||||
{
|
||||
$this->data = new GxV2H5GetStartUrlResponseData($data);
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Bizlicgxv2h5;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
use Yzh\Model\ResponseDataInterface;
|
||||
|
||||
/**
|
||||
* 预启动返回
|
||||
* Class GxV2H5GetStartUrlResponseData
|
||||
*/
|
||||
class GxV2H5GetStartUrlResponseData extends BaseModel implements ResponseDataInterface
|
||||
{
|
||||
/**
|
||||
* 跳转 URL
|
||||
* @var string
|
||||
*/
|
||||
protected $h5_url;
|
||||
|
||||
/**
|
||||
* 跳转 URL
|
||||
* @var string $h5_url
|
||||
*/
|
||||
public function setH5Url($h5_url)
|
||||
{
|
||||
$this->h5_url = $h5_url;
|
||||
}
|
||||
|
||||
/**
|
||||
* 跳转 URL
|
||||
* @return string
|
||||
*/
|
||||
public function getH5Url()
|
||||
{
|
||||
return $this->h5_url;
|
||||
}
|
||||
}
|
||||
92
extend/Yzh/Model/Bizlicgxv2h5/NotifyGxV2H5AicRequest.php
Normal file
92
extend/Yzh/Model/Bizlicgxv2h5/NotifyGxV2H5AicRequest.php
Normal file
@@ -0,0 +1,92 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Bizlicgxv2h5;
|
||||
|
||||
use Yzh\Model\BaseRequest;
|
||||
|
||||
/**
|
||||
* 个体工商户注册/注销结果回调通知
|
||||
* Class NotifyGxV2H5AicRequest
|
||||
*/
|
||||
class NotifyGxV2H5AicRequest extends BaseRequest
|
||||
{
|
||||
/**
|
||||
* 用户唯一标识
|
||||
* @var string
|
||||
*/
|
||||
public $open_id;
|
||||
/**
|
||||
* 平台企业端的用户 ID
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_user_id;
|
||||
/**
|
||||
* 注册/注销提交时间
|
||||
* @var string
|
||||
*/
|
||||
public $submit_at;
|
||||
/**
|
||||
* 注册/注销完成时间
|
||||
* @var string
|
||||
*/
|
||||
public $registed_at;
|
||||
/**
|
||||
* 用户注册/注销状态
|
||||
* @var int32
|
||||
*/
|
||||
public $status;
|
||||
/**
|
||||
* 注册/注销状态描述
|
||||
* @var string
|
||||
*/
|
||||
public $status_message;
|
||||
/**
|
||||
* 注册/注销详情状态码
|
||||
* @var int32
|
||||
*/
|
||||
public $status_detail;
|
||||
/**
|
||||
* 注册/注销详情状态码描述
|
||||
* @var string
|
||||
*/
|
||||
public $status_detail_message;
|
||||
/**
|
||||
* 平台企业 ID
|
||||
* @var string
|
||||
*/
|
||||
public $dealer_id;
|
||||
/**
|
||||
* 综合服务主体 ID
|
||||
* @var string
|
||||
*/
|
||||
public $broker_id;
|
||||
/**
|
||||
* 统一社会信用代码
|
||||
* @var string
|
||||
*/
|
||||
public $uscc;
|
||||
/**
|
||||
* 身份证号码
|
||||
* @var string
|
||||
*/
|
||||
public $id_card;
|
||||
/**
|
||||
* 姓名
|
||||
* @var string
|
||||
*/
|
||||
public $real_name;
|
||||
/**
|
||||
* 回调类型
|
||||
* @var int32
|
||||
*/
|
||||
public $type;
|
||||
|
||||
public function __construct($params = array())
|
||||
{
|
||||
foreach (array_keys(get_object_vars($this)) as $property) {
|
||||
if (isset($params[$property])) {
|
||||
$this->{$property} = $params[$property];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user