22 lines
417 B
PHP
22 lines
417 B
PHP
<?php
|
|
|
|
namespace App\DTOs\Customer;
|
|
|
|
use App\DTOs\CommonDTO;
|
|
|
|
class PointDTO 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);
|
|
}
|
|
}
|