flutter/lib/api/common_api.dart
2025-07-21 15:46:30 +08:00

8 lines
363 B
Dart

class CommonApi {
static const String checkVersion = '/check/version'; // 查询版本
static const String getCode = '/resource/sms/code'; // 发送短信验证码
static const String login = '/auth/login'; // 登录
static const String uploadFile = '/upload'; // 上传文件
static const String accountInfo = '/ums/member/account/'; // 账户信息
}