初始提交

This commit is contained in:
wyf
2026-01-20 09:26:55 +08:00
commit dd4447a029
106 changed files with 11690 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
// lib/http_status_codes.dart
class HttpStatusCodes {
// Success codes
static const int ok = 200;
static const int created = 201;
static const int accepted = 202;
// Client error codes
static const int badRequest = 400;
static const int unauthorized = 401;//401 参数错误
static const int forbidden = 403;//403 禁止,多条数据,不允许修改
static const int notFound = 404;//404 没有报告
// Server error codes
static const int internalServerError = 500;//500 内部异常
static const int notImplemented = 501;
static const int serviceUnavailable = 503;
}