api_constants.dart 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. //网络请求相关Api常量
  2. class ApiConstants {
  3. //当前服务器环境
  4. static const isServerRelease = true;
  5. //越南的域名
  6. static const baseUrl = isServerRelease ? 'https://vietnam.casualabour.com' : 'http://vietnam-dev.casualabour.com';
  7. //新加坡的域名
  8. static const sgBaseUrl = isServerRelease ? 'https://www.casualabour.com' : 'http://singapore-dev.casualabour.com';
  9. // =========================== 用户相关 ↓=========================================
  10. // 酒店登录
  11. static const apiUserLogin = "/index.php/api/v1/hotel/login";
  12. // 用户登出系统
  13. static const apiUserLogout = "/index.php/api/v1/hotel/logout";
  14. // 用户修改密码
  15. static const apiResetPassword = "/index.php/api/v1/hotel/reset";
  16. //获取用户的详情信息
  17. static const apiHotelInfo = "/index.php/api/v1/hotel/info";
  18. //用户注册
  19. static const apiHotelRegister = "/index.php/api/v1/hotel/register";
  20. //用户注销
  21. static const apiHotelDeactivate = "/index.php/api/v1/hotel/deactivate";
  22. // =========================== 用工请求 ↓=========================================
  23. //筛选条件
  24. static const apiLabourRequestIndex = "/index.php/api/v1/hotel/lab-req/index";
  25. //用工列表
  26. static const apiLabourRequestList = "/index.php/api/v1/hotel/lab-req/table";
  27. //添加的选择条件
  28. static const apiLabourRequestAddOption = "/index.php/api/v1/hotel/lab-req/add-view";
  29. //添加用工请求
  30. static const apiLabourRequestAddSubmit = "/index.php/api/v1/hotel/lab-req/add-submit";
  31. //编辑的选项
  32. static const apiLabourRequestEditDetail = "/index.php/api/v1/hotel/lab-req/edit-view";
  33. //编辑的发布
  34. static const apiLabourRequestEditSubmit = "/index.php/api/v1/hotel/lab-req/edit-submit";
  35. //用工请求的审核状态工作流
  36. static const apiLabourRequestStateWorkFlow = "/index.php/api/v1/hotel/lab-req/status-view";
  37. //撤回用工请求
  38. static const apiLabourRequestRecall = "/index.php/api/v1/hotel/lab-req/recall";
  39. // =========================== 工作列表 ↓=========================================
  40. // 工作列表首页选项
  41. static const apiJobListIndex = "/index.php/api/v1/hotel/job/index";
  42. // 工作列表首页列表
  43. static const apiJobListTable = "/index.php/api/v1/hotel/job/table";
  44. // 工作列表首页详情
  45. static const apiJobListDetail = "/index.php/api/v1/hotel/job/detail";
  46. // 工作已申请员工列表-工作的信息
  47. static const apiJobListAppliedJobInfo = "/index.php/api/v1/hotel/applied/index";
  48. // 工作已申请员工列表-员工列表
  49. static const apiJobListAppliedStaffList = "/index.php/api/v1/hotel/applied/table";
  50. // 工作已申请员工列表-添加员工查询全部员工
  51. static const apiJobListAppliedStaffSearch = "/index.php/api/v1/hotel/applied/staff-view";
  52. // 工作已申请员工列表-添加员工提交
  53. static const apiJobListAppliedStaffAdd = "/index.php/api/v1/hotel/applied/staff-submit";
  54. // 工作已申请员工列表-批量修改员工状态
  55. static const apiJobListAppliedStaffBatchEdit = "/index.php/api/v1/hotel/applied/batch-edit";
  56. // 工作已申请员工列表-编辑员工信息的详情数据
  57. static const apiJobListAppliedStaffEditIndex = "/index.php/api/v1/hotel/applied/edit-view";
  58. // 工作已申请员工列表-编辑员工信息提交
  59. static const apiJobListAppliedStaffEditSubmit = "/index.php/api/v1/hotel/applied/edit-submit";
  60. // 工作已申请员工列表-评价员工的详情数据
  61. static const apiJobListAppliedStaffReviewIndex = "/index.php/api/v1/hotel/applied/remark-view";
  62. // 工作已申请员工列表-评价员工的提交
  63. static const apiJobListAppliedStaffReviewSubmit = "/index.php/api/v1/hotel/applied/remark-submit";
  64. // 工作已申请员工列表-评价员工的提交
  65. static const apiJobListAppliedStaffStateWorkflow = "/index.php/api/v1/hotel/applied/status-view";
  66. // 工作已申请员工列表- 提交指定员工们到审核流程
  67. static const apiJobListAppliedApprove = "/index.php/api/v1/hotel/applied/approve";
  68. //员工详情
  69. static const apiJobListStaffDetail = "/index.php/api/v1/hotel/member/detail";
  70. //员工做工历史记录
  71. static const apiJobListStaffLabourHistory = "/index.php/api/v1/hotel/member/history";
  72. //员工做工评价记录
  73. static const apiJobListStaffRemarkHistory = "/index.php/api/v1/hotel/member/remarks";
  74. // =========================== 签到签出 ↓=========================================
  75. // 用户签到签出列表
  76. static const apiSignApplied = "/index.php/api/v1/hotel/sign/table";
  77. // 用户签到签出
  78. static const apiSignInOut = "/index.php/api/v1/hotel/sign/clock";
  79. // =========================== 新加坡用工 ↓=========================================
  80. // 工作标题列表
  81. static const apiJobTitleListSG = "/index.php/api/v1/hotel/title/table";
  82. // 添加工作标题的选项数据
  83. static const apiJobTitleAddIndexSG = "/index.php/api/v1/hotel/title/add-view";
  84. // 添加工作标题提交
  85. static const apiJobTitleAddSubmitSG = "/index.php/api/v1/hotel/title/add-submit";
  86. // 编辑工作标题的选项数据
  87. static const apiJobTitleEditIndexSG = "/index.php/api/v1/hotel/title/edit-view";
  88. // 编辑工作标题提交
  89. static const apiJobTitleEditSubmitSG = "/index.php/api/v1/hotel/title/edit-submit";
  90. // 删除工作标题
  91. static const apiJobTitleDeleteSG = "/index.php/api/v1/hotel/title/delete";
  92. // 工作模板列表
  93. static const apiJobTemplateListSG = "/index.php/api/v1/hotel/temp/table";
  94. // 添加工作模板选项数据
  95. static const apiJobTemplateAddIndexSG = "/index.php/api/v1/hotel/temp/add-view";
  96. // 添加工作模板选提交
  97. static const apiJobTemplateAddSubmitSG = "/index.php/api/v1/hotel/temp/add-submit";
  98. // 编辑工作模板选项数据
  99. static const apiJobTemplateEditIndexSG = "/index.php/api/v1/hotel/temp/edit-view";
  100. // 编辑工作模板提交
  101. static const apiJobTemplateEditSubmitSG = "/index.php/api/v1/hotel/temp/edit-submit";
  102. // 删除工作模板
  103. static const apiJobTemplateDeleteSG = "/index.php/api/v1/hotel/temp/delete";
  104. //用工请求首页数据
  105. static const apiLabourRequestMainSG = "/index.php/api/v1/hotel/lab-req/index";
  106. //用工请求的添加页面选项数据
  107. static const apiLabourRequestAddIndexSG = "/index.php/api/v1/hotel/lab-req/add-view";
  108. //用工请求的添加提交
  109. static const apiLabourRequestAddSubmitSG = "/index.php/api/v1/hotel/lab-req/add-submit";
  110. //用工请求的查询选项(Job List)
  111. static const apiJobListIndexSG = "/index.php/api/v1/hotel/job/index";
  112. //用工请求的查询列表(Job List)
  113. static const apiJobListTableSG = "/index.php/api/v1/hotel/job/table";
  114. //用工请求的编辑详情(Job List)
  115. static const apiJobListEditIndexSG = "/index.php/api/v1/hotel/job/edit-view";
  116. //用工请求的编辑提交(Job List)
  117. static const apiJobListEditSubmitSG = "/index.php/api/v1/hotel/job/edit-submit";
  118. //用工请求的取消(Job List)
  119. static const apiJobListCancelSG = "/index.php/api/v1/hotel/job/cancel";
  120. //用工请求的删除(Job List)
  121. static const apiJobListDeleteSG = "/index.php/api/v1/hotel/job/delete";
  122. //用工请求的考勤确认(Job List)
  123. static const apiJobListConfirmSG = "/index.php/api/v1/hotel/job/confirm";
  124. // =========================== 新加坡工作相关 ↓=========================================
  125. //新加坡工作已申请的选项
  126. static const apiJobAppliedIndexSG = "/index.php/api/v1/hotel/applied/index";
  127. //新加坡工作已申请的列表
  128. static const apiJobAppliedListSG = "/index.php/api/v1/hotel/applied/table";
  129. //新加坡工作已申请的列表-添加员工搜索
  130. static const apiJobAppliedSearchStaffSG = "/index.php/api/v1/hotel/applied/staff-view";
  131. //新加坡工作已申请的列表-添加员工提交
  132. static const apiJobAppliedAddStaffSubmitSG = "/index.php/api/v1/hotel/applied/staff-submit";
  133. //新加坡工作已申请的列表-批量修改
  134. static const apiJobAppliedBatchEditSG = "/index.php/api/v1/hotel/applied/batch-edit";
  135. //新加坡工作已申请的列表-单独编辑的详情
  136. static const apiJobAppliedEditViewSG = "/index.php/api/v1/hotel/applied/edit-view";
  137. //新加坡工作已申请的列表-提交编辑
  138. static const apiJobAppliedEditSubmitSG = "/index.php/api/v1/hotel/applied/edit-submit";
  139. //新加坡工作已申请的列表-修改状态
  140. static const apiJobAppliedChangeStatusSG = "/index.php/api/v1/hotel/applied/edit-status";
  141. //新加坡工作已申请的列表-评价展示
  142. static const apiJobAppliedRemarkViewSG = "/index.php/api/v1/hotel/applied/remark-view";
  143. //新加坡工作已申请的列表-提交评价
  144. static const apiJobAppliedRemarkSubmitSG = "/index.php/api/v1/hotel/applied/remark-submit";
  145. //员工详情
  146. static const apiJobListStaffDetailSG = "/index.php/api/v1/hotel/member/detail";
  147. //员工做工历史记录
  148. static const apiJobListStaffLabourHistorySG = "/index.php/api/v1/hotel/member/history";
  149. //员工做工评价顶部数据
  150. static const apiJobListStaffReviewHeadSG = "/index.php/api/v1/hotel/member/review";
  151. //员工做工评价列表
  152. static const apiJobListStaffReViewHistorySG = "/index.php/api/v1/hotel/member/review/table";
  153. //员工修改记录-选项
  154. static const apiReviseIndexSG = "/index.php/api/v1/hotel/revise/index";
  155. //员工修改记录-列表
  156. static const apiReviseListSG = "/index.php/api/v1/hotel/revise/table";
  157. //给指定的申请记录添加 Revise 数据(详情)
  158. static const apiAddReviseViewSG = "/index.php/api/v1/hotel/revise/add-view";
  159. //给指定的申请记录添加 Revise 数据(提交)
  160. static const apiAddReviseSubmitSG = "/index.php/api/v1/hotel/revise/add-submit";
  161. //给指定的申请记录编辑 Revise 数据(详情)
  162. static const apiEditReviseViewSG = "/index.php/api/v1/hotel/revise/edit-view";
  163. //给指定的申请记录编辑 Revise 数据(提交)
  164. static const apiEditReviseSubmitSG = "/index.php/api/v1/hotel/revise/edit-submit";
  165. //撤回指定的 Revise 数据
  166. static const apiRecallReviseSG = "/index.php/api/v1/hotel/revise/recall";
  167. //删除指定的 Revise 数据
  168. static const apiDeleteReviseSG = "/index.php/api/v1/hotel/revise/delete";
  169. //Revise 的操作日志
  170. static const apiReviseLogListSG = "/index.php/api/v1/hotel/revise/logs";
  171. // =========================== 报表与其他 ↓=========================================
  172. // 设备列表
  173. static const apiDeviceList = "/index.php/api/v1/hotel/device/table";
  174. //财务报表
  175. static const apiReportFiance = "/index.php/api/v1/hotel/report/finance";
  176. //用工报表
  177. static const apiReportLabour = "/index.php/api/v1/hotel/report/casual";
  178. //员工申请报表
  179. static const apiReportStaffRequest = "/index.php/api/v1/hotel/report/staff";
  180. }