api_constants.dart 751 B

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