dbmsv4/app/DTOs/Customer/Wallet/CouponDTO.php
2025-12-15 16:35:31 +09:00

22 lines
425 B
PHP

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