RouterPath.kt 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package com.cooleshow.provider.router
  2. /*
  3. 模块路由 路径定义
  4. */
  5. object RouterPath{
  6. //主页面
  7. class APPCenter{
  8. companion object {
  9. const val PATH_HOME = "/appCenter/home"
  10. }
  11. }
  12. //用户模块
  13. class UserCenter{
  14. companion object {
  15. const val PATH_LOGIN = "/userCenter/login"
  16. const val PATH_VERIFY_LOGIN = "/userCenter/verifyLogin"
  17. const val PATH_VERIFY_INPUT = "/userCenter/verifyInput"
  18. const val PATH_BIND_PASSWORD = "/userCenter/bindPwd"
  19. }
  20. }
  21. //订单模块
  22. class OrderCenter{
  23. companion object {
  24. const val PATH_ORDER_CONFIRM = "/orderCenter/confirm"
  25. }
  26. }
  27. //支付模块
  28. class PaySDK{
  29. companion object {
  30. const val PATH_PAY = "/paySDK/pay"
  31. }
  32. }
  33. //消息模块
  34. class MessageCenter{
  35. companion object {
  36. const val PATH_MESSAGE_PUSH = "/messageCenter/push"
  37. const val PATH_MESSAGE_ORDER = "/messageCenter/order"
  38. }
  39. }
  40. }