202 lines
4.3 KiB
PHP
202 lines
4.3 KiB
PHP
<?php
|
|
namespace App\Bean\Model\Api\Order;
|
|
|
|
use App\Bean\Model\Base\BaseBean;
|
|
use App\Models\Api\Wallet\CustomerWalletCurrencyModel;
|
|
|
|
class CustomerUserPostOrderBean extends BaseBean
|
|
{
|
|
protected $id;
|
|
protected $sn;
|
|
protected $pay_status;
|
|
protected $buyer_uid;
|
|
protected $buyer_currency_code = CustomerWalletCurrencyModel::CODE_USDT_TRC20;
|
|
protected $seller_uid;
|
|
protected $seller_currency_code = CustomerWalletCurrencyModel::CODE_USDT_TRC20;
|
|
protected $pid;
|
|
protected $post_history_id;
|
|
protected $amount;
|
|
protected $buyer_wallet_transaction_id;
|
|
protected $seller_wallet_transaction_id;
|
|
protected $wallet_checkbook_id;
|
|
protected $dispute_status;
|
|
protected $dispute_result_status;
|
|
protected $created_at;
|
|
protected $updated_at;
|
|
|
|
public function getBuyerCurrencyCode()
|
|
{
|
|
return $this->buyer_currency_code;
|
|
}
|
|
|
|
public function setBuyerCurrencyCode($buyer_currency_code): void
|
|
{
|
|
$this->buyer_currency_code = $buyer_currency_code;
|
|
}
|
|
|
|
public function getSellerCurrencyCode()
|
|
{
|
|
return $this->seller_currency_code;
|
|
}
|
|
|
|
public function setSellerCurrencyCode($seller_currency_code): void
|
|
{
|
|
$this->seller_currency_code = $seller_currency_code;
|
|
}
|
|
|
|
|
|
public function getId()
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function setId($id): void
|
|
{
|
|
$this->id = $id;
|
|
}
|
|
|
|
public function getSn()
|
|
{
|
|
return $this->sn;
|
|
}
|
|
|
|
public function setSn($sn): void
|
|
{
|
|
$this->sn = $sn;
|
|
}
|
|
|
|
public function getPayStatus()
|
|
{
|
|
return $this->pay_status;
|
|
}
|
|
|
|
public function setPayStatus($pay_status): void
|
|
{
|
|
$this->pay_status = $pay_status;
|
|
}
|
|
|
|
public function getBuyerUid()
|
|
{
|
|
return $this->buyer_uid;
|
|
}
|
|
|
|
public function setBuyerUid($buyer_uid): void
|
|
{
|
|
$this->buyer_uid = $buyer_uid;
|
|
}
|
|
|
|
public function getSellerUid()
|
|
{
|
|
return $this->seller_uid;
|
|
}
|
|
|
|
public function setSellerUid($seller_uid): void
|
|
{
|
|
$this->seller_uid = $seller_uid;
|
|
}
|
|
|
|
public function getPid()
|
|
{
|
|
return $this->pid;
|
|
}
|
|
|
|
public function setPid($pid): void
|
|
{
|
|
$this->pid = $pid;
|
|
}
|
|
|
|
public function getPostHistoryId()
|
|
{
|
|
return $this->post_history_id;
|
|
}
|
|
|
|
public function setPostHistoryId($post_history_id): void
|
|
{
|
|
$this->post_history_id = $post_history_id;
|
|
}
|
|
|
|
public function getAmount()
|
|
{
|
|
return $this->amount;
|
|
}
|
|
|
|
public function setAmount($amount): void
|
|
{
|
|
$this->amount = $amount;
|
|
}
|
|
|
|
public function getBuyerWalletTransactionId()
|
|
{
|
|
return $this->buyer_wallet_transaction_id;
|
|
}
|
|
|
|
public function setBuyerWalletTransactionId($buyer_wallet_transaction_id): void
|
|
{
|
|
$this->buyer_wallet_transaction_id = $buyer_wallet_transaction_id;
|
|
}
|
|
|
|
public function getSellerWalletTransactionId()
|
|
{
|
|
return $this->seller_wallet_transaction_id;
|
|
}
|
|
|
|
public function setSellerWalletTransactionId($seller_wallet_transaction_id): void
|
|
{
|
|
$this->seller_wallet_transaction_id = $seller_wallet_transaction_id;
|
|
}
|
|
|
|
public function getWalletCheckbookId()
|
|
{
|
|
return $this->wallet_checkbook_id;
|
|
}
|
|
|
|
public function setWalletCheckbookId($wallet_checkbook_id): void
|
|
{
|
|
$this->wallet_checkbook_id = $wallet_checkbook_id;
|
|
}
|
|
|
|
public function getDisputeStatus()
|
|
{
|
|
return $this->dispute_status;
|
|
}
|
|
|
|
public function setDisputeStatus($dispute_status): void
|
|
{
|
|
$this->dispute_status = $dispute_status;
|
|
}
|
|
|
|
public function getDisputeResultStatus()
|
|
{
|
|
return $this->dispute_result_status;
|
|
}
|
|
|
|
public function setDisputeResultStatus($dispute_result_status): void
|
|
{
|
|
$this->dispute_result_status = $dispute_result_status;
|
|
}
|
|
|
|
public function getCreatedAt()
|
|
{
|
|
return $this->created_at;
|
|
}
|
|
|
|
public function setCreatedAt($created_at): void
|
|
{
|
|
$this->created_at = $created_at;
|
|
}
|
|
|
|
public function getUpdatedAt()
|
|
{
|
|
return $this->updated_at;
|
|
}
|
|
|
|
public function setUpdatedAt($updated_at): void
|
|
{
|
|
$this->updated_at = $updated_at;
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|