wallet tron transactions

This commit is contained in:
cano
2024-03-25 06:15:36 +08:00
parent 4b8f205e86
commit 489090382f
83 changed files with 5424 additions and 1343 deletions

View File

@ -14,6 +14,7 @@ class CustomerWalletBalanceTransactionBean extends BaseBean
protected $uid;
protected $currency_code = CustomerWalletCurrencyModel::CODE_USDT_TRC20;
protected $amount = 0;
protected $fee_amount = 0;
protected $before_total_amount;
protected $after_total_amount;
protected $source_params;
@ -27,6 +28,17 @@ class CustomerWalletBalanceTransactionBean extends BaseBean
protected $created_at;
protected $updated_at;
public function getFeeAmount(): int
{
return $this->fee_amount;
}
public function setFeeAmount(int $fee_amount): void
{
$this->fee_amount = $fee_amount;
}
public function getTargetPostOrderDisputeId()
{
return $this->target_post_order_dispute_id;