12345678910111213141516171819202122232425 |
- //网络请求相关Api常量
- class ApiConstants {
- //基础域名
- static const baseUrl = 'http://yyjobs-api-dev.guabean.com';
- //服务器时间
- static const apiServiceTime = "/index.php/api/employee/extra/time";
- //用户信息详情
- static const apiUserProfile = "/index.php/api/employee/profile/detail";
- //行业列表
- static const apiIndustryList = "/index.php/api/employee/extra/industry";
- //用户登陆
- static const apiUserLogin = "/index.php/api/employee/auth/login";
- //酒店登陆
- static const apiHotelLogin = "/index.php/api/v1/device/login";
- //更新用户信息
- static const apiUpdateProfile = "/index.php/api/employee/profile/edit";
- }
|