feat: driver

This commit is contained in:
2025-04-01 11:49:50 +08:00
parent a7b99e2cf4
commit b68ad879c8
11 changed files with 554 additions and 124 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Constants\Common;
class DriverCode
{
/**
* @var int 状态 1 出发 2 目的地 99 异常
*/
CONST INT DEPARTURES = 1;
CONST INT DESTINATION = 2;
CONST INT EXCEPTIONS = 99;
}