api_constants.dart 682 B

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