This commit is contained in:
2023-12-17 21:29:59 +08:00
parent 3ae0046c88
commit ec6b900318
20 changed files with 652 additions and 31 deletions

9
app/Const/Responses.php Normal file
View File

@ -0,0 +1,9 @@
<?php
namespace App\Const;
class Responses{
const CODE_SUCCESS = 200;
const CODE_ERROR = 10000;
}