chore: initial import for test contour
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
namespace App\Dto;
|
||||
|
||||
class ScheduleDayDto
|
||||
{
|
||||
public function __construct(
|
||||
public string $schedident,
|
||||
public string $rnum,
|
||||
public string $dcode,
|
||||
public int $filial,
|
||||
public array $intervals,
|
||||
public string $depnum,
|
||||
public bool $isFree
|
||||
) {}
|
||||
}
|
||||
|
||||
class ScheduleIntervalDto
|
||||
{
|
||||
public function __construct(
|
||||
public string $time,
|
||||
public bool $isFree
|
||||
) {}
|
||||
}
|
||||
|
||||
class ScheduleResponseDto
|
||||
{
|
||||
public function __construct(
|
||||
public array $schedule = [],
|
||||
public array $nearestDate = []
|
||||
) {}
|
||||
}
|
||||
Reference in New Issue
Block a user