add model for lp requests
This commit is contained in:
parent
f491450426
commit
9e538d3c36
2 changed files with 91 additions and 0 deletions
|
@ -0,0 +1,29 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Class SmsVerificationConfirm
|
||||
*/
|
||||
class SmsVerificationConfirm extends BaseModel
|
||||
{
|
||||
/**@var string $code */
|
||||
protected $code;
|
||||
|
||||
/**@var string $checkId */
|
||||
protected $checkId;
|
||||
|
||||
/**
|
||||
* @param string $code
|
||||
*/
|
||||
public function setCode(string $code): void
|
||||
{
|
||||
$this->code = $code;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $checkId
|
||||
*/
|
||||
public function setCheckId(string $checkId): void
|
||||
{
|
||||
$this->checkId = $checkId;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,62 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Class SmsVerificationConfirm
|
||||
*/
|
||||
class SmsVerificationConfirm extends BaseModel
|
||||
{
|
||||
/**@var integer $length */
|
||||
protected $length;
|
||||
|
||||
/**@var string $phone */
|
||||
protected $phone;
|
||||
|
||||
/**@var string $actionType */
|
||||
protected $actionType;
|
||||
|
||||
/**@var integer $customerId */
|
||||
protected $customerId;
|
||||
|
||||
/**@var integer $orderId */
|
||||
protected $orderId;
|
||||
|
||||
/**
|
||||
* @param int $length
|
||||
*/
|
||||
public function setLength(int $length): void
|
||||
{
|
||||
$this->length = $length;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $phone
|
||||
*/
|
||||
public function setPhone(string $phone): void
|
||||
{
|
||||
$this->phone = $phone;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $actionType
|
||||
*/
|
||||
public function setActionType(string $actionType): void
|
||||
{
|
||||
$this->actionType = $actionType;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param int $customerId
|
||||
*/
|
||||
public function setCustomerId(int $customerId): void
|
||||
{
|
||||
$this->customerId = $customerId;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param int $orderId
|
||||
*/
|
||||
public function setOrderId(int $orderId): void
|
||||
{
|
||||
$this->orderId = $orderId;
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue