Files
hyperf_service/app/Constants/Common/DriverCode.php
2025-04-01 11:49:50 +08:00

13 lines
222 B
PHP

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