23 lines
515 B
PHP
23 lines
515 B
PHP
<?php
|
|
|
|
namespace App\Domain\ReportDuty\DTO;
|
|
|
|
use Illuminate\Support\Carbon;
|
|
|
|
class CreateReportDutyDto
|
|
{
|
|
public function __construct(
|
|
public Carbon $reportDate,
|
|
public Carbon $sentAt,
|
|
public string $periodType,
|
|
public Carbon $periodStart,
|
|
public Carbon $periodEnd,
|
|
public int $reportMonth,
|
|
public int $reportYear,
|
|
public int $statusId,
|
|
public int $rfLpuDoctorId,
|
|
public int $rfDepartmentId,
|
|
public int $rfUserId
|
|
) {}
|
|
}
|