dbmsv4/app/DTOs/Customer/Wallet/WalletDTO.php
2025-12-19 10:03:03 +09:00

23 lines
441 B
PHP

<?php
namespace App\DTOs\Customer\Wallet;
use App\DTOs\CommonDTO;
class WalletDTO extends CommonDTO
{
public ?int $uid = null;
public ?int $user_uid = null;
public ?int $clientinfo_uid = null;
public string $title = '';
public ?int $amount = 0;
public ?int $balance = 0;
public string $status = '';
public string $content = '';
public function __construct(array $datas = [])
{
parent::__construct($datas);
}
}