You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
685 B
14 lines
685 B
/// API端点URL配置文件
|
|
/// 集中管理所有API接口路径,方便维护和修改
|
|
class ApiUrls {
|
|
// 认证相关接口
|
|
static const String login = 'dating-agency-uec/authorize/by-captcha';
|
|
static const String getVerificationCode = 'dating-agency-uec/authorize/get/auth-captcha';
|
|
|
|
// 用户相关接口
|
|
static const String getBaseUserInfo = 'dating-agency-uec/user/get/base-info';
|
|
static const String getMarriageInformationDetail = 'dating-agency-service/user/get/dongwo/marriage-information-detail';
|
|
static const String registerMarriageInformation = 'dating-agency-service/user/register/marriage-information';
|
|
|
|
// 后续可以在此添加更多API端点
|
|
}
|