@gct-paas/core 0.0.1-dev.15 → 0.0.1-dev.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (251) hide show
  1. package/dist/index.min.cjs +1 -1
  2. package/dist/index.system.min.js +1 -1
  3. package/es/constants/editor-register/editor-register.d.ts +14 -0
  4. package/es/constants/editor-register/editor-register.mjs +7 -0
  5. package/es/constants/editor-type/editor-type.d.ts +172 -0
  6. package/es/constants/editor-type/editor-type.mjs +48 -0
  7. package/es/constants/form-container-type/form-container-type.d.ts +14 -0
  8. package/es/constants/form-container-type/form-container-type.mjs +7 -0
  9. package/es/constants/index.d.ts +3 -0
  10. package/es/constants/index.mjs +3 -0
  11. package/es/controller/edit-form/edit-form.controller.d.ts +28 -0
  12. package/es/controller/edit-form/edit-form.controller.mjs +48 -0
  13. package/es/controller/editor/color-editor.controller.d.ts +13 -0
  14. package/es/controller/editor/color-editor.controller.mjs +7 -0
  15. package/es/controller/editor/length-unit-editor.controller.d.ts +13 -0
  16. package/es/controller/editor/length-unit-editor.controller.mjs +7 -0
  17. package/es/controller/editor-item/editor-item.controller.d.ts +14 -0
  18. package/es/controller/editor-item/editor-item.controller.mjs +9 -0
  19. package/es/controller/form/form.controller.d.ts +76 -0
  20. package/es/controller/form/form.controller.mjs +147 -0
  21. package/es/controller/form-collapse/form-collapse.controller.d.ts +18 -0
  22. package/es/controller/form-collapse/form-collapse.controller.mjs +13 -0
  23. package/es/controller/form-collapse-pane/form-collapse-pane.controller.d.ts +18 -0
  24. package/es/controller/form-collapse-pane/form-collapse-pane.controller.mjs +13 -0
  25. package/es/controller/form-edit-item/form-edit-item.controller.d.ts +26 -0
  26. package/es/controller/form-edit-item/form-edit-item.controller.mjs +70 -0
  27. package/es/controller/form-group/form-group.controller.d.ts +18 -0
  28. package/es/controller/form-group/form-group.controller.mjs +13 -0
  29. package/es/controller/form-item/form-item.controller.d.ts +20 -0
  30. package/es/controller/form-item/form-item.controller.mjs +39 -0
  31. package/es/controller/form-item-basic/form-item-basic.controller.d.ts +57 -0
  32. package/es/controller/form-item-basic/form-item-basic.controller.mjs +48 -0
  33. package/es/controller/form-item-hidden/form-item-hidden.controller.d.ts +17 -0
  34. package/es/controller/form-item-hidden/form-item-hidden.controller.mjs +8 -0
  35. package/es/controller/form-tab/form-tab.controller.d.ts +18 -0
  36. package/es/controller/form-tab/form-tab.controller.mjs +13 -0
  37. package/es/controller/form-tab-pane/form-tab-pane.controller.d.ts +18 -0
  38. package/es/controller/form-tab-pane/form-tab-pane.controller.mjs +13 -0
  39. package/es/controller/gct-form/gct-form.controller.d.ts +101 -0
  40. package/es/controller/gct-form/gct-form.controller.mjs +214 -0
  41. package/es/controller/index.d.ts +15 -0
  42. package/es/controller/index.mjs +17 -0
  43. package/es/enums/page-designer/panel.d.ts +2 -0
  44. package/es/enums/page-designer/panel.mjs +1 -0
  45. package/es/global/gct/gct.d.ts +11 -3
  46. package/es/global/gct/gct.mjs +13 -2
  47. package/es/hooks/index.d.ts +4 -0
  48. package/es/hooks/index.mjs +4 -0
  49. package/es/hooks/use-form/use-form.d.ts +10 -0
  50. package/es/hooks/use-form/use-form.mjs +9 -0
  51. package/es/hooks/use-gct-form-value/use-gct-form-value.d.ts +22 -0
  52. package/es/hooks/use-gct-form-value/use-gct-form-value.mjs +84 -0
  53. package/es/hooks/use-modal/use-modal.d.ts +10 -0
  54. package/es/hooks/use-modal/use-modal.mjs +14 -0
  55. package/es/hooks/useCopyToClipboard.d.ts +11 -0
  56. package/es/hooks/useCopyToClipboard.mjs +58 -0
  57. package/es/index.d.ts +1 -0
  58. package/es/index.mjs +36 -0
  59. package/es/interface/controller/edit-form/edit-form.controller.d.ts +26 -0
  60. package/es/interface/controller/edit-form/edit-form.controller.mjs +1 -0
  61. package/es/interface/controller/editor/i-color-editor.controller.d.ts +11 -0
  62. package/es/interface/controller/editor/i-color-editor.controller.mjs +1 -0
  63. package/es/interface/controller/editor/i-length-unit-editor.controller.d.ts +11 -0
  64. package/es/interface/controller/editor/i-length-unit-editor.controller.mjs +1 -0
  65. package/es/interface/controller/editor-item/editor-item.controller.d.ts +19 -0
  66. package/es/interface/controller/editor-item/editor-item.controller.mjs +1 -0
  67. package/es/interface/controller/form/form.controller.d.ts +121 -0
  68. package/es/interface/controller/form/form.controller.mjs +3 -0
  69. package/es/interface/controller/form-collapse/form-collapse.controller.d.ts +23 -0
  70. package/es/interface/controller/form-collapse/form-collapse.controller.mjs +1 -0
  71. package/es/interface/controller/form-collapse-pane/form-collapse-pane.controller.d.ts +23 -0
  72. package/es/interface/controller/form-collapse-pane/form-collapse-pane.controller.mjs +1 -0
  73. package/es/interface/controller/form-edit-item/form-edit-item.controller.d.ts +54 -0
  74. package/es/interface/controller/form-edit-item/form-edit-item.controller.mjs +1 -0
  75. package/es/interface/controller/form-group/form-group.controller.d.ts +24 -0
  76. package/es/interface/controller/form-group/form-group.controller.mjs +1 -0
  77. package/es/interface/controller/form-hidden-item/form-hidden-item.controller.d.ts +24 -0
  78. package/es/interface/controller/form-hidden-item/form-hidden-item.controller.mjs +1 -0
  79. package/es/interface/controller/form-item/form-item.controller.d.ts +40 -0
  80. package/es/interface/controller/form-item/form-item.controller.mjs +1 -0
  81. package/es/interface/controller/form-item-basic/form-item-basic.controller.d.ts +51 -0
  82. package/es/interface/controller/form-item-basic/form-item-basic.controller.mjs +1 -0
  83. package/es/interface/controller/form-tab/form-tab.controller.d.ts +23 -0
  84. package/es/interface/controller/form-tab/form-tab.controller.mjs +1 -0
  85. package/es/interface/controller/form-tab-pane/form-tab-pane.controller.d.ts +23 -0
  86. package/es/interface/controller/form-tab-pane/form-tab-pane.controller.mjs +1 -0
  87. package/es/interface/controller/index.d.ts +14 -0
  88. package/es/interface/events/form/i-form.event.d.ts +11 -0
  89. package/es/interface/events/form/i-form.event.mjs +1 -0
  90. package/es/interface/events/index.d.ts +1 -0
  91. package/es/interface/events/index.mjs +1 -0
  92. package/es/interface/form/i-editor/i-check-switch.d.ts +29 -0
  93. package/es/interface/form/i-editor/i-check-switch.mjs +3 -0
  94. package/es/interface/form/i-editor/i-checkbox-editor.d.ts +9 -0
  95. package/es/interface/form/i-editor/i-checkbox-editor.mjs +3 -0
  96. package/es/interface/form/i-editor/i-color-editor.d.ts +13 -0
  97. package/es/interface/form/i-editor/i-color-editor.mjs +3 -0
  98. package/es/interface/form/i-editor/i-editor-basic.d.ts +87 -0
  99. package/es/interface/form/i-editor/i-editor-basic.mjs +1 -0
  100. package/es/interface/form/i-editor/i-icon-select-editor.d.ts +21 -0
  101. package/es/interface/form/i-editor/i-icon-select-editor.mjs +3 -0
  102. package/es/interface/form/i-editor/i-info-editor.d.ts +21 -0
  103. package/es/interface/form/i-editor/i-info-editor.mjs +3 -0
  104. package/es/interface/form/i-editor/i-length-unit-editor.d.ts +13 -0
  105. package/es/interface/form/i-editor/i-length-unit-editor.mjs +3 -0
  106. package/es/interface/form/i-editor/i-number-editor.d.ts +21 -0
  107. package/es/interface/form/i-editor/i-number-editor.mjs +3 -0
  108. package/es/interface/form/i-editor/i-picker-editor.d.ts +30 -0
  109. package/es/interface/form/i-editor/i-picker-editor.mjs +3 -0
  110. package/es/interface/form/i-editor/i-radio-editor.d.ts +21 -0
  111. package/es/interface/form/i-editor/i-radio-editor.mjs +3 -0
  112. package/es/interface/form/i-editor/i-select-editor.d.ts +14 -0
  113. package/es/interface/form/i-editor/i-select-editor.mjs +3 -0
  114. package/es/interface/form/i-editor/i-span-editor.d.ts +30 -0
  115. package/es/interface/form/i-editor/i-span-editor.mjs +3 -0
  116. package/es/interface/form/i-editor/i-switch-editor.d.ts +14 -0
  117. package/es/interface/form/i-editor/i-switch-editor.mjs +3 -0
  118. package/es/interface/form/i-editor/i-text-editor.d.ts +46 -0
  119. package/es/interface/form/i-editor/i-text-editor.mjs +3 -0
  120. package/es/interface/form/i-editor/i-textarea-editor.d.ts +25 -0
  121. package/es/interface/form/i-editor/i-textarea-editor.mjs +3 -0
  122. package/es/interface/form/i-form/i-edit-form.d.ts +48 -0
  123. package/es/interface/form/i-form/i-edit-form.mjs +1 -0
  124. package/es/interface/form/i-form/i-form-collapse-pane.d.ts +26 -0
  125. package/es/interface/form/i-form/i-form-collapse-pane.mjs +1 -0
  126. package/es/interface/form/i-form/i-form-collapse.d.ts +35 -0
  127. package/es/interface/form/i-form/i-form-collapse.mjs +1 -0
  128. package/es/interface/form/i-form/i-form-container.d.ts +53 -0
  129. package/es/interface/form/i-form/i-form-container.mjs +1 -0
  130. package/es/interface/form/i-form/i-form-edit-item.d.ts +140 -0
  131. package/es/interface/form/i-form/i-form-edit-item.mjs +1 -0
  132. package/es/interface/form/i-form/i-form-group-container.d.ts +24 -0
  133. package/es/interface/form/i-form/i-form-group-container.mjs +1 -0
  134. package/es/interface/form/i-form/i-form-group.d.ts +35 -0
  135. package/es/interface/form/i-form/i-form-group.mjs +1 -0
  136. package/es/interface/form/i-form/i-form-hidden-item.d.ts +11 -0
  137. package/es/interface/form/i-form/i-form-hidden-item.mjs +1 -0
  138. package/es/interface/form/i-form/i-form-item-basic.d.ts +126 -0
  139. package/es/interface/form/i-form/i-form-item-basic.mjs +1 -0
  140. package/es/interface/form/i-form/i-form-item.d.ts +11 -0
  141. package/es/interface/form/i-form/i-form-item.mjs +1 -0
  142. package/es/interface/form/i-form/i-form-tab-pane.d.ts +19 -0
  143. package/es/interface/form/i-form/i-form-tab-pane.mjs +1 -0
  144. package/es/interface/form/i-form/i-form-tab.d.ts +21 -0
  145. package/es/interface/form/i-form/i-form-tab.mjs +1 -0
  146. package/es/interface/form/i-form/i-form.d.ts +72 -0
  147. package/es/interface/form/i-form/i-form.mjs +1 -0
  148. package/es/interface/form/index.d.ts +28 -0
  149. package/es/interface/form/index.mjs +1 -0
  150. package/es/interface/i-dictionary/i-dictionary-item.d.ts +48 -0
  151. package/es/interface/i-dictionary/i-dictionary-item.mjs +1 -0
  152. package/es/interface/i-dictionary/i-dictionary.d.ts +52 -0
  153. package/es/interface/i-dictionary/i-dictionary.mjs +1 -0
  154. package/es/interface/i-modal/i-modal.d.ts +71 -0
  155. package/es/interface/i-modal/i-modal.mjs +3 -0
  156. package/es/interface/i-modal-data/i-modal-data.d.ts +34 -0
  157. package/es/interface/i-modal-data/i-modal-data.mjs +1 -0
  158. package/es/interface/index.d.ts +13 -4
  159. package/es/interface/index.mjs +0 -5
  160. package/es/interface/layout/i-flex-layout/i-flex-container.d.ts +75 -0
  161. package/es/interface/layout/i-flex-layout/i-flex-container.mjs +1 -0
  162. package/es/interface/layout/i-flex-layout/i-flex-item.d.ts +51 -0
  163. package/es/interface/layout/i-flex-layout/i-flex-item.mjs +1 -0
  164. package/es/interface/layout/i-grid-layout/i-grid-container.d.ts +29 -0
  165. package/es/interface/layout/i-grid-layout/i-grid-container.mjs +1 -0
  166. package/es/interface/layout/i-grid-layout/i-grid-item-span.d.ts +54 -0
  167. package/es/interface/layout/i-grid-layout/i-grid-item-span.mjs +1 -0
  168. package/es/interface/layout/i-grid-layout/i-grid-item.d.ts +37 -0
  169. package/es/interface/layout/i-grid-layout/i-grid-item.mjs +1 -0
  170. package/es/interface/layout/i-layout-basis/i-layout-container-basis.d.ts +11 -0
  171. package/es/interface/layout/i-layout-basis/i-layout-container-basis.mjs +1 -0
  172. package/es/interface/layout/index.d.ts +6 -0
  173. package/es/interface/layout/index.mjs +1 -0
  174. package/es/interface/provider/i-editor-provider/i-editor-provider.d.ts +24 -0
  175. package/es/interface/provider/i-editor-provider/i-editor-provider.mjs +1 -0
  176. package/es/interface/provider/i-form-item-provider/i-form-item-provider.d.ts +44 -0
  177. package/es/interface/provider/i-form-item-provider/i-form-item-provider.mjs +1 -0
  178. package/es/interface/provider/i-provider-basic/i-provider-basic.d.ts +25 -0
  179. package/es/interface/provider/i-provider-basic/i-provider-basic.mjs +1 -0
  180. package/es/interface/provider/index.d.ts +3 -0
  181. package/es/interface/provider/index.mjs +1 -0
  182. package/es/interface/state/form/form.state.d.ts +53 -0
  183. package/es/interface/state/form/form.state.mjs +1 -0
  184. package/es/interface/state/form-collapse/form-collapse.state.d.ts +11 -0
  185. package/es/interface/state/form-collapse/form-collapse.state.mjs +1 -0
  186. package/es/interface/state/form-collapse-pane/form-collapse-pane.state.d.ts +11 -0
  187. package/es/interface/state/form-collapse-pane/form-collapse-pane.state.mjs +1 -0
  188. package/es/interface/state/form-edit-item/form-edit-item.state.d.ts +38 -0
  189. package/es/interface/state/form-edit-item/form-edit-item.state.mjs +1 -0
  190. package/es/interface/state/form-group/form-group.state.d.ts +21 -0
  191. package/es/interface/state/form-group/form-group.state.mjs +1 -0
  192. package/es/interface/state/form-hidden-item/form-hidden-item.state.d.ts +5 -0
  193. package/es/interface/state/form-hidden-item/form-hidden-item.state.mjs +1 -0
  194. package/es/interface/state/form-item/form-item.state.d.ts +20 -0
  195. package/es/interface/state/form-item/form-item.state.mjs +1 -0
  196. package/es/interface/state/form-item-basic/form-item-basic.state.d.ts +63 -0
  197. package/es/interface/state/form-item-basic/form-item-basic.state.mjs +1 -0
  198. package/es/interface/state/form-tab/form-tab.state.d.ts +19 -0
  199. package/es/interface/state/form-tab/form-tab.state.mjs +1 -0
  200. package/es/interface/state/form-tab-pane/form-tab-pane.state.d.ts +11 -0
  201. package/es/interface/state/form-tab-pane/form-tab-pane.state.mjs +1 -0
  202. package/es/interface/state/i-designer-state.d.ts +0 -12
  203. package/es/interface/state/index.d.ts +10 -0
  204. package/es/interface/style/i-border.d.ts +16 -0
  205. package/es/interface/style/i-border.mjs +1 -0
  206. package/es/interface/style/i-font.d.ts +9 -0
  207. package/es/interface/style/i-font.mjs +1 -0
  208. package/es/interface/style/i-margin.d.ts +2 -0
  209. package/es/interface/style/i-margin.mjs +1 -0
  210. package/es/interface/style/i-padding.d.ts +2 -0
  211. package/es/interface/style/i-padding.mjs +1 -0
  212. package/es/interface/style/i-position.d.ts +14 -0
  213. package/es/interface/style/i-position.mjs +1 -0
  214. package/es/interface/style/i-spacing.d.ts +13 -0
  215. package/es/interface/style/i-spacing.mjs +1 -0
  216. package/es/interface/style/index.d.ts +6 -0
  217. package/es/interface/style/index.mjs +1 -0
  218. package/es/register/editor-register/editor-register.d.ts +57 -0
  219. package/es/register/editor-register/editor-register.mjs +66 -0
  220. package/es/register/form-item-register/form-item-register.d.ts +47 -0
  221. package/es/register/form-item-register/form-item-register.mjs +52 -0
  222. package/es/register/index.d.ts +2 -0
  223. package/es/register/index.mjs +2 -0
  224. package/es/state/form/form.state.d.ts +24 -0
  225. package/es/state/form/form.state.mjs +17 -0
  226. package/es/state/form-collapse/form-collapse.state.d.ts +14 -0
  227. package/es/state/form-collapse/form-collapse.state.mjs +7 -0
  228. package/es/state/form-collapse-pane/form-collapse-pane.state.d.ts +14 -0
  229. package/es/state/form-collapse-pane/form-collapse-pane.state.mjs +7 -0
  230. package/es/state/form-edit-item/form-edit-item.state.d.ts +17 -0
  231. package/es/state/form-edit-item/form-edit-item.state.mjs +11 -0
  232. package/es/state/form-group/form-group.state.d.ts +21 -0
  233. package/es/state/form-group/form-group.state.mjs +15 -0
  234. package/es/state/form-item/form-item.state.d.ts +14 -0
  235. package/es/state/form-item/form-item.state.mjs +7 -0
  236. package/es/state/form-item-basic/form-item-basic.state.d.ts +17 -0
  237. package/es/state/form-item-basic/form-item-basic.state.mjs +10 -0
  238. package/es/state/form-tab/form-tab.state.d.ts +15 -0
  239. package/es/state/form-tab/form-tab.state.mjs +8 -0
  240. package/es/state/form-tab-pane/form-tab-pane.state.d.ts +14 -0
  241. package/es/state/form-tab-pane/form-tab-pane.state.mjs +7 -0
  242. package/es/state/index.d.ts +9 -0
  243. package/es/state/index.mjs +9 -0
  244. package/es/utils/axios/interceptors.mjs +1 -1
  245. package/es/utils/dictionary/dictionary.d.ts +102 -0
  246. package/es/utils/dictionary/dictionary.mjs +147 -0
  247. package/es/utils/index.d.ts +2 -0
  248. package/es/utils/index.mjs +2 -0
  249. package/es/utils/width-install/width-install.d.ts +17 -0
  250. package/es/utils/width-install/width-install.mjs +21 -0
  251. package/package.json +7 -5
@@ -1 +1 @@
1
- "use strict";var _n=Object.defineProperty;var fn=(n,e,t)=>e in n?_n(n,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):n[e]=t;var r=(n,e,t)=>fn(n,typeof e!="symbol"?e+"":e,t);Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const Sn=require("vue-i18n"),w=require("pinia"),K=require("axios"),In=require("qs"),T=require("lodash-es");function vn(n){const e=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(n){for(const t in n)if(t!=="default"){const s=Object.getOwnPropertyDescriptor(n,t);Object.defineProperty(e,t,s.get?s:{enumerable:!0,get:()=>n[t]})}}return e.default=n,Object.freeze(e)}const An=vn(In),Ln=48,Tn=80;var X=(n=>(n.FULL="full",n.FIXED="fixed",n))(X||{}),W=(n=>(n.DARK="dark",n.LIGHT="light",n))(W||{}),H=(n=>(n.AUTO="auto",n.HEADER="header",n.FIXED="fixed",n))(H||{}),$=(n=>(n[n.ROUTE_JUMP=0]="ROUTE_JUMP",n[n.PAGE_COVERAGE=1]="PAGE_COVERAGE",n))($||{}),j=(n=>(n.ROLE="ROLE",n.BACK="BACK",n.ROUTE_MAPPING="ROUTE_MAPPING",n.PLATFORM_ROLE="PLATFORM_ROLE",n))(j||{}),z=(n=>(n.ZOOM_FADE="zoom-fade",n.ZOOM_OUT="zoom-out",n.FADE_SIDE="fade-slide",n.FADE="fade",n.FADE_BOTTOM="fade-bottom",n.FADE_SCALE="fade-scale",n))(z||{}),A=(n=>(n.PORTAL="portal",n.BACKEND_MANAGEMENT="backend-management",n.DEVELOPER_CENTER="developer-center",n.TENANT_CENTER="tenant-center",n.APP_DESIGNER="app-designer",n.PAGE_DESIGNER="page-designer",n.WEB_RENDER="web-render",n.MOBILE_RENDER="mobile-render",n))(A||{}),q=(n=>(n.ALL="field_type_all",n.BASIC="field_type_basic",n.LOGIC="field_type_logic",n.TRACE="field_type_trace",n))(q||{}),d=(n=>(n.PRIMARY_KEY="primary_key",n.ASSOCIATED_PRIMARY_KEY="associated_primary_key",n.TEXT="text",n.LONG_TEXT="long_text",n.INTEGER="integer",n.LONG="long",n.DOUBLE="double",n.DECIMAL="decimal",n.BOOLEAN="boolean",n.DATE="date",n.TIME="time",n.DATE_TIME="date_time",n.IMAGE="image",n.ATTACHMENT="attachment",n.SERIAL="serial_number",n.MASTERSLAVE="master_slave",n.USER="user",n.USER_MULTI="user_multi",n.ORG="org",n.ORG_MULTI="org_multi",n.ENUM="enum",n.ENUM_MULTI="enum_multi",n.OPTION="option",n.OPTION_MULTI="option_multi",n.REF="ref",n.REF_MULTI="ref_multi",n.RDO_REF="rdo_ref",n.EXPRESSION="expression",n.EXPRESSION_CONDITION="expression_condition",n.AGG="agg",n.ESOP="esop",n.TRANSACTION="transaction",n.LABEL_TEMPLATE="label_template",n.LABEL_TEMPLATE_REF="label_template_ref",n.DOCUMENT_TEMPLATE="document_template",n.SERIALRULE="serial_number_rule",n.PRINTER="printer",n.MESSAGE_TMPL="message_tmpl",n.RANGE_USER="range_user",n.SIGNATURE="electronic_signature",n.ONLINE_FORM_TEMPLATE="online_form_tmpl",n.E_DHR_TEMPLATE="edhr_tmpl",n.ONLINE_FORM="online_form",n.DATA_TABLE_FORMULA="data_table_formula",n.READONLYCMP="readonlycmp",n.MATERIAL_NO="material_no",n.PRODUCT="product",n.DEVICE="device",n.Biz_Process="biz_process",n))(d||{}),J=(n=>(n.TEXT="text",n.LONG_TEXT="long_text",n.INTEGER="integer",n.LONG="long",n.DOUBLE="double",n.DECIMAL="decimal",n.BOOLEAN="boolean",n.DATE="date",n.TIME="time",n.DATE_TIME="date_time",n))(J||{}),Q=(n=>(n.IMAGE="image",n.ATTACHMENT="attachment",n.SERIAL="serial_number",n.MASTERSLAVE="master_slave",n.USER="user",n.USER_MULTI="user_multi",n.ORG="org",n.ORG_MULTI="org_multi",n.ENUM="enum",n.ENUM_MULTI="enum_multi",n.OPTION="option",n.OPTION_MULTI="option_multi",n.REF="ref",n.REF_MULTI="ref_multi",n.RDO_REF="rdo_ref",n.EXPRESSION="expression",n.EXPRESSION_CONDITION="expression_condition",n.AGG="agg",n.ESOP="esop",n.TRANSACTION="transaction",n.LABEL_TEMPLATE="label_template",n.LABEL_TEMPLATE_REF="label_template_ref",n.DOCUMENT_TEMPLATE="document_template",n.SERIALRULE="serial_number_rule",n.PRINTER="printer",n.MESSAGE_TMPL="message_tmpl",n.RANGE_USER="range_user",n.SIGNATURE="electronic_signature",n.ONLINE_FORM_TEMPLATE="online_form_tmpl",n.E_DHR_TEMPLATE="edhr_tmpl",n.ONLINE_FORM="online_form",n.Biz_Process="biz_process",n))(Q||{}),F=(n=>(n.MATERIAL_NO="material_no",n.PRODUCT="product",n.DEVICE="device",n))(F||{});const Rn={attachment:"string",boolean:"boolean",date:"string",date_time:"string",decimal:"number",double:"number",enum:"string",enum_multi:"string",image:"string",integer:"number",long:"number",long_text:"string",master_slave:"string",org:"string",org_multi:"string",rdo_ref:"string",ref:"string",ref_multi:"string",serial_number:"string",text:"string",time:"string",user:"string",user_multi:"string",expression:"string",expression_condition:"string",agg:"number",esop:"string",serial_number_rule:"string",label_template:"string",label_template_ref:"string",document_template:"string",transaction:"string",printer:"string",message_tmpl:"string",range_user:"string",primary_key:"string",associated_primary_key:"string",readonlycmp:"string",material_no:"string",product:"string",device:"string",option:"string",option_multi:"string",electronic_signature:"string",online_form_tmpl:"string",edhr_tmpl:"string",online_form:"string",data_table_formula:"string",biz_process:"string"};var Z=(n=>(n.SYSTEM="SYSTEM",n.USER_DEFINED="USER_DEFINED",n.BUILTIN="BUILTIN",n.CUSTOM="CUSTOM",n.PROCESS="PROCESS",n))(Z||{}),Y=(n=>(n.CATALOG="CATALOG",n.STANDARD="STANDARD",n.LINK="LINK",n))(Y||{}),ee=(n=>(n.PRESENT="PRESENT",n.IFRAME="IFRAME",n.NEW="NEW",n))(ee||{}),te=(n=>(n.MaterialFormField="formField",n.MaterialTableField="tableField",n.MaterialEmbedTableField="embedTableField",n.MaterialSubTableField="subTableField",n.MaterialSubTableModalField="subTableModalField",n.cardListFormField="cardList",n.MaterialTableSelectField="tableSelectField",n.DescriptionsFormField="descriptions",n))(te||{});const bn={primary_key:"icon-id",text:"icon-wenben1",long_text:"icon-changwenben",integer:"icon-zhengshu",long:"icon-changzhengshu",decimal:"icon-jingduxiaoshu1",double:"icon-xiaoshu",boolean:"icon-buer",date:"icon-riqi1",time:"icon-shijian1",date_time:"icon-riqishijian",user:"icon-renyuanguanlian",org:"icon-bumenguanlian",user_multi:"icon-renyuanduoxuan",org_multi:"icon-bumenduoxuan",image:"icon-tupian1",attachment:"icon-fujian1",serial_number:"icon-xuliehao",master_slave:"icon-zhuziguanlian",enum:"icon-meijuguanlian",ref:"icon-moxingguanlian",rdo_ref:"icon-RDOmoxingguanlian",enum_multi:"icon-meijuguanlianduoxuan",option:"icon-meijuguanlian",option_multi:"icon-meijuguanlianduoxuan",ref_multi:"icon-moxingduoxuan",expression:"icon-gongshiziduan",expression_condition:"icon-gongshiziduan",agg:"icon-huizong",esop:"icon-E-SOP",transaction:"icon-ziduan1",serial_number_rule:"icon-ziduan1",printer:"icon-dayinanniu",message_tmpl:"icon-xiaoximoban",range_user:"icon-fanweirenyuan",label_template_ref:"icon-biaoqianmoban",document_template:"icon-danjumoban",electronic_signature:"icon-qianming1",online_form_tmpl:"icon-zaixianbiaodanmoban",edhr_tmpl:"icon-edhr",online_form:"icon-zaixianbiaodan",data_table_formula:"icon-gongshiziduan",readonlycmp:"icon-wenben1",tenant:"icon-id",associated_primary_key:"icon-id",material_no:"icon-field-material-no",product:"icon-field-product",device:"icon-field-device",biz_process:"icon-jichengzhongxin1"};var ne=(n=>(n.COUNT="COUNT",n.SUM="SUM",n.MAX="MAX",n.MIN="MIN",n.AVG="AVG",n))(ne||{}),se=(n=>(n.SPEC="spec",n.SUB_WORKFLOW="sub_workflow",n))(se||{}),re=(n=>(n.None="none",n.SingleChoice="gct_radio",n.MultipleChoice="checkbox",n))(re||{}),le=(n=>(n.NONE="NONE",n.GLOBAL="GLOBAL",n.LEVEL="LEVEL",n.LOGIC="LOGIC",n))(le||{}),ae=(n=>(n.ALL="all",n.UNREAD="unread",n))(ae||{}),ue=(n=>(n.TEST="myTestApp",n.QUICK="quickAccess",n.MY="myApp",n))(ue||{}),ie=(n=>(n.PROFILE="profile",n.GENDER="gender",n.ENTERPRISE="enterprise",n))(ie||{}),ce=(n=>(n.FEMALE="female",n.MALE="male",n.PRIVARY="privary",n))(ce||{}),oe=(n=>(n.TODO="todo",n.APPLICATION="application",n.DONE="done",n.DELEGATE="delegate",n))(oe||{});const On=[d.TEXT,d.LONG_TEXT,d.LONG,d.INTEGER,d.DECIMAL,d.DOUBLE,d.SERIAL];var ge=(n=>(n.SCRIPT_SERVICE="SCRIPT_SERVICE",n.SQL_SERVICE="SQL_SERVICE",n.SO_SERVICE="SO_SERVICE",n.BUILTIN_SERVICE="SYS_BUILTIN",n))(ge||{}),pe=(n=>(n.ENTITY="entity",n.DATA="data",n.VIEW="view",n))(pe||{}),de=(n=>(n.BASE="BASE",n.NDO="NDO",n.RDO="RDO",n.TREE="TREE",n.DYNAMIC_FORM="DYNAMIC_FORM",n.WORKFLOW="WORKFLOW",n.TRANSACTION="TRANSACTION",n))(de||{}),he=(n=>(n.NONE="NONE",n.FIXED="FIXED",n.SYS_VAR="SYS_VAR",n))(he||{}),ye=(n=>(n.NULL="",n.SYS_DATE="SYS_DATE",n.SYS_TIME="SYS_TIME",n.SYS_DATE_TIME="SYS_DATE_TIME",n.CURRENT_USER="CURRENT_USER",n.CURRENT_ORG="CURRENT_ORG",n))(ye||{}),_e=(n=>(n.EVENT="event",n.BUSINESSSERVICE="businessService",n.TIMER="timer",n))(_e||{}),fe=(n=>(n.PAGE="page",n.HISTORY="history",n.GLOBAL="global",n.WIDGET="widget",n.CHANGE_DESIGN="changeDesign",n))(fe||{}),Se=(n=>(n.STATIC="static",n.RELATIVE="relative",n.ABSOLUTE="absolute",n.FIXED="fixed",n.STICKY="sticky",n))(Se||{}),Ie=(n=>(n.NONE="none",n.SOLID="solid",n.DOTTED="dotted",n.DASHED="dashed",n.DOUBLE="double",n))(Ie||{}),ve=(n=>(n.LEFT="left",n.CENTER="center",n.RIGHT="right",n.JUSTIFY="justify",n))(ve||{}),Ae=(n=>(n.LINETHROUGH="line-through",n.UNDERLINE="underline",n.NONE="none",n))(Ae||{}),Le=(n=>(n.INNER="inner",n.JS="js",n.LO="lo",n))(Le||{}),Te=(n=>(n.BASIC="basic",n.ADVANCED="advance",n.DISPLAY="display",n.LABEL="label",n.FIELD="field",n.DATA="data",n.OTHER="other",n.LIST="list",n.Table="table",n.SUBMIT_RULE="submitRule",n.LISTDATA="listdata",n.SHOW="show",n.FIELD_CONFIG="fieldConfig",n.FORM_CONFIG="formConfig",n.FIELD_LAYOUT="FieldLayout",n.TABLESELECT_CONFIG="tableSelect",n.GENRADIO="genRadio",n.GENCHECKBOX="genCheckbox",n.GENSWITCH="genSwitch",n.OPTIONS="options",n.COLLAPSE="collapse",n.IFRAME="iframe",n.FILECOLLECT="fileCollect",n.CARDLIST="cardList",n.BUTTON="button",n.Button="Button",n.ButtonShow="ButtonShow",n.ButtonStyle="ButtonStyle",n.LISTBUTTON="listButton",n.MODAL="modal",n.MODALWIDTH="modalWidth",n.MODALHEIGHT="modalHeight",n.MODALTITLECONFIG="modalTitleConfig",n.SEARCH="search",n.QUERY="query",n.INPUT_CONFIG="inputConfig",n.DATALINKAGE="dataLinkage",n.PERMISSION="permission",n.DATASOURCE="dataSource",n.VALIDATERULE="validaterule",n.TEXT="text",n.GRID_CONFIG="gridConfig",n.COL_CONFIG="colConfig",n.COMPONENTDEPENDENCY="componentDependency",n.GENIMAGE="genImage",n.DATARANGE="dataRange",n.OPERATOR_CONFIG="operatorConfig",n.BUSINESS_CONFIG="businessConfig",n))(Te||{}),Re=(n=>(n.LAYOUT="layout",n.STYLE="style",n.BACKGROUND="background",n.MARGIN="margin",n.BORDER="border",n.HEADER="header",n))(Re||{}),be=(n=>(n.TAG="tag",n.PROGRESS="progress",n))(be||{}),Oe=(n=>(n.RADIUS="radius",n.LINEAR_RADIUS="linear_radius",n.BIG_RADIUS="big_radius",n.LINEAR_BIG_RADIUS="linear_big_radius",n.DASHED_RADIUS="dashed_radius",n.STATUS="status",n))(Oe||{}),Ee=(n=>(n.CIRCLE="circle",n.LINE="line",n))(Ee||{}),De=(n=>(n.RULE="rule",n.CONFIG="config",n))(De||{}),Ne=(n=>(n.STRING="string",n.NUMBER="number",n.BOOLEAN="boolean",n.OBJECT="object",n.ARRAY="array",n.NULL="NULL",n.DATE="date",n.DATETIME="datetime",n.TIME="time",n))(Ne||{}),Me=(n=>(n.MODAL="modal",n.EVENT="event",n.VAR="var",n))(Me||{}),we=(n=>(n.LEFT="left",n.CENTER="center",n.RIGHT="right",n.TOP="top",n.BOTTOM="bottom",n))(we||{}),me=(n=>(n.CLOSE_MODAL="__CLOSEMODAL__",n.OPEN_MODAL="__OPENMODAL__",n.REFRESH_TABLE="__REFRESHTABLE__",n))(me||{}),Pe=(n=>(n.INLINE="inline",n.MODAL="modal",n))(Pe||{}),xe=(n=>(n.DELETE="delete",n.COPY="copy",n))(xe||{}),Ue=(n=>(n.DELETE="delete",n.EDIT="edit",n.COPY="copy",n))(Ue||{}),Be=(n=>(n.JS="js",n))(Be||{}),Ce=(n=>(n.alwaysCover="alwaysCover",n.notCovered="notCovered",n))(Ce||{}),ke=(n=>(n.HIDDEN="hidden",n.READONLY="readonly",n.DISABLED="disabled",n.REQUIRED="required",n.ASSIGNMENT="assignment",n))(ke||{}),Ge=(n=>(n.OUTLINE="OUTLINE",n.WIDGETS="WIDGETS",n.FIELD="FIELD",n.MODAL="MODAL",n.JS="JS",n.CSS="CSS",n.TEMPLATE="TEMPLATE",n.LO="LO",n))(Ge||{}),Ve=(n=>(n.FORM="form",n.LAYOUT="layout",n.ADVANCED="advanced",n.DATA="data",n.BUTTON="button",n.RDO="rdo",n.KIT="kit",n.PROCESS="process",n))(Ve||{}),E=(n=>(n.WEB="web",n.MOBILE="mobile",n))(E||{}),Ke=(n=>(n.MODAL="modal",n.MODAL_BODY="modalBody",n.MODAL_FOOTER="modalFooter",n.BottomButtonContainer="bottom-button-container",n))(Ke||{}),Xe=(n=>(n.WEEK_NOW="sys.pageDesigner.dateRange.weekNow",n.MONTH_NOW="sys.pageDesigner.dateRange.monthNow",n.QUARTER_NOW="sys.pageDesigner.dateRange.quarterNow",n.YEAR_NOW="sys.pageDesigner.dateRange.yearNow",n.WEEk_BEFORE="sys.pageDesigner.dateRange.weekBefore",n.MONTH_BEFORE="sys.pageDesigner.dateRange.monthBefore",n.QUARTER_BEFORE="sys.pageDesigner.dateRange.quarterBefore",n.YEAR_BEFORE="sys.pageDesigner.dateRange.yearBefore",n.DATE_BEFORE="sys.pageDesigner.dateRange.dateBefore",n.DATE_AFTER="sys.pageDesigner.dateRange.dateAfter",n))(Xe||{}),We=(n=>(n.DROPDOWN_SELECTION="dropdownSelection",n.TREE_SELECTION="treeSelection",n.MODAL_BOX_SELECTION="modalBoxSelection",n))(We||{}),He=(n=>(n["¥"]="¥",n.$="$",n.S$="S$",n))(He||{}),$e=(n=>(n.d="d",n["d:h"]="d:h",n["d:h:m"]="d:h:m",n["d:h:m:s"]="d:h:m:s",n.h="h",n["h:m"]="h:m",n["h:m:s"]="h:m:s",n.m="m",n["m:s"]="m:s",n.s="s",n))($e||{}),je=(n=>(n.d="days",n["d:h"]="dayhour",n["d:h:m"]="dayhourminute",n["d:h:m:s"]="dayhourminutesecond",n.h="hour",n["h:m"]="hourminute",n["h:m:s"]="hourminutesecond",n.m="minute",n["m:s"]="minutesecond",n.s="seconds",n))(je||{}),ze=(n=>(n["¥"]="chMoney",n.$="usMoney",n.S$="sgpMoney",n))(ze||{}),qe=(n=>(n.SingleChoice="radio",n.MultipleChoice="checkbox",n))(qe||{}),Je=(n=>(n.Current="current",n.Whole="whole",n))(Je||{}),Qe=(n=>(n.Local="local",n.Server="server",n.PREVIEW_PRINT="PreviewPrint",n.DIRECT_PRINTING="DirectPrinting",n))(Qe||{}),Fe=(n=>(n.OPEN="open",n.APPROVE="linkApprove",n))(Fe||{}),Ze=(n=>(n.SYSTEM="system",n.TRANSACTION="transaction",n))(Ze||{}),Ye=(n=>(n.CURRENT="current",n.REFERENCE="reference",n))(Ye||{}),et=(n=>(n.BLOCK="block",n.INLINE_BLOCK="inline-block",n))(et||{}),tt=(n=>(n.DEFAULT="default",n.LINK="link",n))(tt||{}),nt=(n=>(n.DEFAULT="default",n.PRIMARY="primary",n.ERROR="error",n.WARNING="warning",n.SUCCESS="success",n))(nt||{}),st=(n=>(n.ORDINARY="ordinary",n.SQUARE="square",n))(st||{}),rt=(n=>(n.SMALL="small",n.DEFAULT="middle",n.LARGE="large",n))(rt||{}),lt=(n=>(n.TEXT="TEXT",n.ICON_TEXT="ICON_TEXT",n.ICON="ICON",n))(lt||{}),at=(n=>(n.PRIMARY="primary",n.DEFAULT="default",n.DASHED="dashed",n.LINK="link",n))(at||{}),ut=(n=>(n.PRIMARY="primary",n.DANGER="danger",n.DEFAULT="default",n))(ut||{});const En={TEXT:[{type:"primary",label:"sys.pageDesigner.button_primary",hasText:!0},{type:"default",label:"sys.pageDesigner.button_default",hasText:!0},{type:"primary",danger:!0,label:"sys.pageDesigner.button_primary_danger",hasText:!0},{type:"default",danger:!0,label:"sys.pageDesigner.button_danger",hasText:!0},{type:"dashed",label:"sys.pageDesigner.button_dashed",hasText:!0},{type:"link",label:"sys.pageDesigner.button_text",hasText:!0}],ICON_TEXT:[{type:"primary",label:"sys.pageDesigner.button_primary",hasText:!0,hasIcon:!0},{type:"default",label:"sys.pageDesigner.button_default",hasText:!0,hasIcon:!0},{type:"primary",danger:!0,label:"sys.pageDesigner.button_primary_danger",hasText:!0,hasIcon:!0},{type:"default",danger:!0,label:"sys.pageDesigner.button_danger",hasText:!0,hasIcon:!0},{type:"dashed",label:"sys.pageDesigner.button_dashed",hasText:!0,hasIcon:!0},{type:"link",label:"sys.pageDesigner.button_text",hasText:!0,hasIcon:!0}],ICON:[{type:"primary",hasIcon:!0},{type:"default",hasIcon:!0},{type:"primary",danger:!0,hasIcon:!0},{type:"default",danger:!0,hasIcon:!0},{type:"dashed",hasIcon:!0},{type:"link",hasIcon:!0}]};var it=(n=>(n.COLUMNDELETE="columnDelete",n.COLUMNLINK="columnLink",n.COPY="copy",n.VERSION_COPY="version_copy",n.VERSION_CREATE="version_create",n.DETAILS="details",n.EDIT="edit",n.USAGEINFORMATION="usageInformation",n.MODELINGTRACEABILITY="modelingTraceability",n.IMPORT="import",n.EXPORT="export",n.BATCHDELETE="batchDelete",n.SUBMIT="submit",n.RESET="reset",n.EXCUTE="excute",n.LABEL_PRINT="label_print",n.DOCUMENT_PRINT="document_print",n.EXAMINE_AND_APPROVE="examineAndApprove",n))(it||{}),ct=(n=>(n.NONE="none",n.EMBEDDED="embedded",n.EXTERNAL="external",n))(ct||{}),ot=(n=>(n.DEFAULT="default",n.EMBED="embed",n.SUB="sub",n))(ot||{}),gt=(n=>(n.DEFAULTEDITING="defaultEditing",n.CLICKTOENTEREDITING="clickToEnterEditing",n))(gt||{}),pt=(n=>(n.GCT="gct",n.GCT_MODAL="gct-modal",n.GCT_SUB_TABLE_MODAL="gct-sub-table-modal",n))(pt||{}),dt=(n=>(n.ALL="ALL",n.SEARCH="SEARCH",n.SEARCHALL="SEARCHALL",n.LEVEL="LEVEL",n.CHILDREN="CHILDREN",n))(dt||{}),ht=(n=>(n.REALTIMEDATASOURCE="realTimeDataSource",n.SERVICEDATASOURCE="serviceDataSource",n))(ht||{}),yt=(n=>(n.SIGNATURE_ONLY="signature_only",n.SIGNATURE_DATE="signature_date",n.SIGNATURE_DATETIME="signature_datetime",n))(yt||{}),_t=(n=>(n.WIPE_DATA="wipe_data",n.REFRESHDATA="refresh_data",n))(_t||{}),ft=(n=>(n.PAGE="page",n.MODAL="modal",n))(ft||{}),St=(n=>(n.RdoInput="rdo-input",n.Input="input",n.ElectronicSignature="electronic-signature",n.UseinfoButton="useinfo-button",n.ModelingButton="modeling-button",n.ImportButton="gc-import-button",n.ExportButton="gc-export-button",n.DocumentPrintButton="document-print-button",n.SubmitButton="submit-button",n.BatchDeleteButton="batchdelete-button",n.CustomButton="custom-button",n.TableLinkButton="table-link-button",n.TableInfoButton="table-info-button",n.TableApproveButton="table-approve-button",n.OpeButton="ope-button",n.ResetButton="reset-button",n.RdoSaveButton="rdo-save-button",n.LabelPrintButton="labelprint-button",n.ProcessButton="process-button",n.ProcessApproveButton="process-approve-button",n.CreateButton="create-button",n.DeleteButton="delete-button",n.CopyButton="copy-button",n.RefreshButton="refresh-button",n.CreateVersionButton="create-version-button",n.CopyVersionButton="copy-version-button",n.Checkbox="checkbox",n.DataTable="data-table",n.TreeTable="tree-table",n.DataTableColumn="data-table-column",n.RefDataTable="ref-data-table",n.DataList="data-list",n.RdoDataList="rdo-data-list",n.DataTableOpe="data-table-ope",n.DataTableFormula="data-table-formula",n.Datepicker="datepicker",n.DateTimepicker="datetimepicker",n.Department="department",n.Form="form",n.RdoForm="rdo-form",n.RdoTable="rdo-table",n.MedProRdoForm="medprordo-form",n.MedProRdoTable="medprordo-table",n.FormProcess="form-process",n.Inputmoney="inputmoney",n.Inputnumber="inputnumber",n.InputDouble="inputdouble",n.Radio="radio",n.Select="select",n.RdoSelect="rdo-select",n.Switch="switch",n.Textarea="textarea",n.Timepicker="timepicker",n.Userpicker="userpicker",n.Search="search",n.SelectSearch="select-search",n.QuickSearch="quick-search",n.LayoutContainer="layout-container",n.ButtonContainer="button-container",n.ButtonProcessContainer="button-process-container",n.BottomButtonContainer="bottom-button-container",n.Grid="grid",n.GridCol="grid-col",n.Tabs="tabs",n.TabPane="tab-pane",n.LeftRightColumns="left-right-columns",n.TopBottomColumns="top-bottom-columns",n.LeftLayoutThree="left-layout-three",n.TopLayoutThree="top-layout-three",n.UploadFile="upload-file",n.UploadImage="upload-image",n.SubTable="sub-table",n.SubTableOpe="sub-table-ope",n.SubTableAddBtn="sub-table-add-button",n.SubTableCopyBtn="sub-table-copy-button",n.SubTableEditBtn="sub-table-edit-button",n.SubTableDeleteBtn="sub-table-delete-button",n.LinkPageBtn="link-page-button",n.Collapse="collapse",n.CardList="card-list",n.CardHeaderLeft="card-header-left",n.CardHeaderRight="card-header-right",n.CardContent="card-content",n.CardOpeBtn="card-ope-btn",n.BaseButton="base-button",n.ReadonlyCmp="readonlycmp",n.TableSelect="table-select",n.GenCheckbox="gen-checkbox",n.GenRadio="gen-radio",n.GenSwitch="gen-switch",n.WorkflowNodes="workflow-nodes",n.WorkflowNodeModal="workflow-node-modal",n.ESOP="e-sop",n.EXPRESSION="expression",n.ExpressionCondition="expression-condition",n.AGG="agg",n.DynamicFormType="dynamic-form-type",n.DynamicFormValue="dynamic-form-value",n.DynamicFormOpts="dynamic-form-options",n.DynamicFormShowType="dynamic-form-show-type",n.DynamicTable="dynamic-table",n.Transaction="transaction",n.SerialRule="serial-rule",n.LabelTemplate="label-template",n.LabelTemplateRef="label-template-ref",n.DocumentTemplate="document-template",n.Wacom="wacom",n.Text="text",n.CustomField="custom-field",n.Printer="printer",n.Descriptions="descriptions",n.RangeUser="range-user",n.GenImage="gen-image",n.TestButton="test-button",n.Iframe="iframe",n.ExcuteButton="medproexcute-button",n.SubDataTable="sub-data-table",n.Signature="signature",n.OnlineForm="online-form",n.TmplTreeSelect="tmpl-tree-select",n.Boolean="boolean",n.BizProcess="biz-process",n.ApprovalHistory="approval-history",n.FlowDiagram="flow-diagram",n))(St||{}),It=(n=>(n.SearchInput="SearchInput",n.SearchNumberInput="SearchNumberInput",n.SearchStringNumberInput="SearchStringNumberInput",n.SearchSwitch="SearchSwitch",n.SearchDate="SearchDate",n.SearchDateTime="SearchDateTime",n.SearchTime="SearchTime",n.SearchSelect="SearchSelect",n.SearchRdoSelect="SearchRdoSelect",n.SearchTransaction="SearchTransaction",n.SearchTmplTreeSelect="SearchTmplTreeSelect",n.SearchPrinter="SearchPrinter",n.SearchBizProcess="SearchBizProcess",n))(It||{}),vt=(n=>(n.ATUO="selfAdaption",n.ENUMERATION="fixed",n.PERCENTAGE="percentage",n))(vt||{}),At=(n=>(n.NULL="NULL",n.STRING="空字符串",n.ZERO="0",n))(At||{}),Lt=(n=>(n.TOTAL="total",n.AVERAGE="average",n))(Lt||{}),Tt=(n=>(n.RIGHT="right",n.NONE="",n.LEFT="left",n))(Tt||{}),Rt=(n=>(n.COLUMN_TEXT="COLUMN_TEXT",n.COLUMN_NUMBER="COLUMN_NUMBER",n.COLUMNTEXT_DATA="COLUMNTEXT_DATA",n.COLUMNTEXT_REF="COLUMNTEXT_REF",n.COLUMNTEXT_ENUM="COLUMNTEXT_ENUM",n.COLUMNTEXT_ORG="COLUMNTEXT_ORG",n.COLUMNTEXT_USER="COLUMNTEXT_USER",n.COLUMNTEXT_BOOLEAN="COLUMNTEXT_BOOLEAN",n.COLUMNTEXT_IMAGE="COLUMNTEXT_IMAGE",n))(Rt||{}),bt=(n=>(n.LINE="line",n.CARD="card",n.TEXt="text",n.CAPSULE="capsule",n.CUSTOM="custom",n))(bt||{}),Ot=(n=>(n.ASC="asc",n.DESC="desc",n))(Ot||{}),Et=(n=>(n.CMP_TEXT="TEXT",n.CMP_TEXTAREA="TEXTAREA",n.CMP_ELECTRONICSIGNATURE="ELECTRONICSIGNATURE",n.CMP_BOOLEAN="BOOLEAN",n.CMP_SELECT_LIST="SELECT_LIST",n.CMP_RADIO="RADIO",n.CMP_CHECKBOX="CHECKBOX",n.CMP_DROPDOWN_SELECT="dropdownSelection",n.CMP_MODAL="modalBoxSelection",n.CMP_TREE_SELECTION="treeSelection",n.CMP_NUMBER="NUMBER",n.CMP_CURRENCY="CURRENCY",n.CMP_TIME="TIME",n))(Et||{});const Dn={TEXT:"sys.pageDesigner.bindCmpStyle.bindText",TEXTAREA:"sys.pageDesigner.bindCmpStyle.bindTextarea",ELECTRONICSIGNATURE:"sys.pageDesigner.bindCmpStyle.electronicSignature",BOOLEAN:"sys.pageDesigner.bindCmpStyle.bindBoolean",SELECT_LIST:"sys.pageDesigner.bindCmpStyle.bindSelectList",RADIO:"sys.pageDesigner.bindCmpStyle.bindRadio",CHECKBOX:"sys.pageDesigner.bindCmpStyle.bindCheckbox",dropdownSelection:"sys.pageDesigner.bindCmpStyle.bindDropdownSelect",modalBoxSelection:"sys.pageDesigner.bindCmpStyle.bindModal",treeSelection:"sys.pageDesigner.bindCmpStyle.bindTreeSelection",NUMBER:"sys.pageDesigner.bindCmpStyle.bindNumber",CURRENCY:"sys.pageDesigner.bindCmpStyle.bindCurrency",TIME:"sys.pageDesigner.bindCmpStyle.bindTime"};var Dt=(n=>(n.BindText="bindText",n.BindLongText="BindLongText",n.BindBool="bindBool",n.BindPerson="bindPerson",n.BindDept="bindDept",n.BindLink="bindLink",n.BindMulti="bindMulti",n.BindNum="bindNum",n.BindDecimal="bindDecimal",n))(Dt||{});const Nn={TEXT:"input",TEXTAREA:"textarea",ELECTRONICSIGNATURE:"electronic-signature",SELECT_LIST:"select",RADIO:"radio",CHECKBOX:"checkbox"},Mn={bindText:["TEXT","TEXTAREA"],BindLongText:["TEXT","TEXTAREA","ELECTRONICSIGNATURE"],bindBool:["BOOLEAN","SELECT_LIST","RADIO","CHECKBOX"],bindPerson:["dropdownSelection","modalBoxSelection"],bindDept:["treeSelection","modalBoxSelection"],bindLink:["SELECT_LIST","RADIO"],bindMulti:["SELECT_LIST","CHECKBOX"],bindNum:["NUMBER","CURRENCY","TIME"],bindDecimal:["NUMBER","CURRENCY"]};var Nt=(n=>(n.FOLD_ALL="foldAll",n.FOLD_PART="foldPart",n))(Nt||{});const wn=[d.BOOLEAN,d.DATE,d.DATE_TIME,d.DECIMAL,d.DOUBLE,d.ENUM,d.ENUM_MULTI,d.INTEGER,d.LONG,d.LONG_TEXT,d.TEXT,d.USER_MULTI,d.USER,d.TIME,d.REF_MULTI,d.REF,d.RDO_REF,d.ORG_MULTI,d.ORG,d.AGG,d.EXPRESSION,d.SERIAL,d.ONLINE_FORM_TEMPLATE,d.E_DHR_TEMPLATE,d.PRINTER,d.LABEL_TEMPLATE_REF,d.Biz_Process,d.DOCUMENT_TEMPLATE];var Mt=(n=>(n.SUCCESS="SUCCESS",n.FAILURE="FAILURE",n.PREPARING="PREPARING",n.EVENTING="EVENTING",n.PROCESSIING="PROCESSIING",n.DEPLOYING="DEPLOYING",n))(Mt||{}),wt=(n=>(n.Insert="Insert",n.Update="Update",n.Delete="Delete",n.Import="Import",n.Export="Export",n.Setting="Setting",n.Download="Download",n.Test="Test",n.Design="Design",n.Add="Add",n))(wt||{}),mt=(n=>(n.ResetPassword="ResetPassword",n.PermissionSetting="PermissionSetting",n.RemoveAndHandover="RemoveAndHandover",n.CategoryManagement="CategoryManagement",n.BaiscSetting="BaiscSetting",n.WatermarkSetting="WatermarkSetting",n.SecuritySetting="SecuritySetting",n.LoginSetting="LoginSetting",n.ThemeSetting="ThemeSetting",n.OrganizationSetting="OrganizationSetting",n.ApkSetting="ApkSetting",n.DevelopIconManagement="DevelopIconManagement",n.DevelopImageManagement="DevelopImageManagement",n.Reprint="Reprint",n.ViewTask="ViewTask",n.ManualTrigger="ManualTrigger",n.Setting="Setting",n.Terminate="Terminate",n.Reassign="Reassign",n.Log="Log",n.Moving="Moving",n.EnableDisable="EnableDisable",n))(mt||{});const mn=["Insert","Update","Delete"],Pn=["BaiscSetting","WatermarkSetting","SecuritySetting","LoginSetting","ThemeSetting","OrganizationSetting","ApkSetting"];var Pt=(n=>(n.XS="XS",n.SM="SM",n.MD="MD",n.LG="LG",n.XL="XL",n.XXL="XXL",n))(Pt||{}),xt=(n=>(n[n.XS=480]="XS",n[n.SM=576]="SM",n[n.MD=768]="MD",n[n.LG=992]="LG",n[n.XL=1200]="XL",n[n.XXL=1600]="XXL",n))(xt||{});const L=new Map;L.set("XS",480);L.set("SM",576);L.set("MD",768);L.set("LG",992);L.set("XL",1200);L.set("XXL",1600);const Ut="TIMEZONE__",xn="TENANT__",Un="TOKEN__",Bn="LOCALE__",Cn="LOCALE__LIST",kn="LOCAL_I18N_TRANSLATE",Gn="USER__INFO__",Vn="ROLES__KEY__",Kn="PROJ__CFG__KEY__",Xn="LOCK__INFO__KEY__",Wn="MULTIPLE_TABS__KEY__",Hn="__APP__DARK__MODE__",$n="COMMON__LOCAL__KEY__",jn="COMMON__SESSION__KEY__",zn="DESIGNER_SESSION_CACHE_KEY";var Bt=(n=>(n[n.SESSION=0]="SESSION",n[n.LOCAL=1]="LOCAL",n))(Bt||{}),Ct=(n=>(n.EQ="eq",n.IEQ="iEq",n.NE="ne",n.INE="ine",n.GT="gt",n.GE="ge",n.LT="lt",n.LE="le",n.ISNULL="isNull",n.ISNOTNULL="isNotNull",n.LIKE="like",n.ILIKE="iLike",n.NOTLIKE="notLike",n.NOTILIKE="iNotLike",n.LEFTLIKE="leftLike",n.ILEFTLIKE="iLeftLike",n.RIGHTLIKE="rightLike",n.IRIGHTLIKE="iRightLike",n.IN="in",n.NOTIN="notIn",n.CONTAINANY="containAny",n.CONTAINALL="containAll",n.RANGE="range",n.ORANGE="oRange",n.LORANGE="loRange",n.RORANGE="roRange",n.VERSIONIN="versionIn",n))(Ct||{});const qn=["in","notIn","containAny","containAll","versionIn"];var kt=(n=>(n.LEFT="left",n.CENTER="center",n.RIGHT="right",n.BETWEEN="between",n))(kt||{});const Jn=["#DBDBDB","#FFE4E4","#D1D1D1","#838383","#838383","#FFEECB","#D8E3FF","#FF8888","#FF8888","#0DAA9C","#3370FF"];var Gt=(n=>(n[n.SINGLELINE=0]="SINGLELINE",n[n.HEAD=1]="HEAD",n[n.BATCH=2]="BATCH",n[n.SINGLELINE_RDO=3]="SINGLELINE_RDO",n))(Gt||{}),Vt=(n=>(n[n.parentVersion=0]="parentVersion",n[n.childVersion=1]="childVersion",n))(Vt||{}),Kt=(n=>(n[n.PAGE_NOT_ACCESS=403]="PAGE_NOT_ACCESS",n[n.PAGE_NOT_FOUND=404]="PAGE_NOT_FOUND",n[n.ERROR=500]="ERROR",n[n.NET_WORK_ERROR=1e4]="NET_WORK_ERROR",n[n.PAGE_NOT_DATA=10100]="PAGE_NOT_DATA",n))(Kt||{}),Xt=(n=>(n.VUE="vue",n.SCRIPT="script",n.RESOURCE="resource",n.AJAX="ajax",n.PROMISE="promise",n))(Xt||{}),Wt=(n=>(n[n.SUCCESS=200]="SUCCESS",n[n.ERROR=-1]="ERROR",n[n.TIMEOUT=401]="TIMEOUT",n.TYPE="success",n))(Wt||{}),Ht=(n=>(n.GET="GET",n.POST="POST",n.PUT="PUT",n.DELETE="DELETE",n))(Ht||{}),B=(n=>(n.JSON="application/json;charset=UTF-8",n.FORM_URLENCODED="application/x-www-form-urlencoded;charset=UTF-8",n.FORM_DATA="multipart/form-data;charset=UTF-8",n))(B||{}),$t=(n=>(n.submit="post",n.listByIds="get",n.getone="post",n.listAll="post",n.listByPage="post",n.listTree="post",n.save="post",n.saveOrUpdate="post",n.saveBatch="post",n.importData="post",n.exportData="post",n.remove="post",n.removeById="delete",n.removeByIds="delete",n.update="put",n.updateById="put",n.updateByIds="put",n.rdoSave="post",n.rdoListAll="post",n.rdoListByPage="post",n.rdoListVersionById="get",n.rdoSaveVersion="post",n.rdoSaveBatch="post",n.rdoUpdateVersionById="put",n.rdoRemoveVersionById="delete",n.rdoRemoveById="delete",n.rdoGetVersionById="get",n.getOne="post",n.rdoGetVersionByRefId="post",n.getById="get",n.rdoListAllVersion="post",n.rdoRefListByPage="post",n.export="post",n.import="post",n.rdoExport="post",n.rdoImport="post",n.biz_search="post",n))($t||{}),jt=(n=>(n.SIDEBAR="sidebar",n.MIX_SIDEBAR="mix-sidebar",n.MIX="mix",n.TOP_MENU="top-menu",n))(jt||{}),zt=(n=>(n.NONE="NONE",n.FOOTER="FOOTER",n.HEADER="HEADER",n))(zt||{}),qt=(n=>(n.VERTICAL="vertical",n.HORIZONTAL="horizontal",n.VERTICAL_RIGHT="vertical-right",n.INLINE="inline",n))(qt||{}),Jt=(n=>(n[n.NONE=0]="NONE",n[n.TOP=1]="TOP",n[n.LEFT=2]="LEFT",n))(Jt||{}),Qt=(n=>(n.CENTER="center",n.START="start",n.END="end",n))(Qt||{}),Ft=(n=>(n.HOVER="hover",n.CLICK="click",n))(Ft||{}),Zt=(n=>(n.BASE_LOGIN="/login",n.BASE_TENANT="/tenant",n.BASE_HOME="/home",n.USER_CENTER="/user-center",n.PROCESS_CENTER="/process",n.MESSAGE_CENTER="/message",n.ERROR_PAGE="/exception",n.ERROR_LOG_PAGE="/error-log/list",n.USER_CENTER_PWD="/user-center/password",n))(Zt||{}),Yt=(n=>(n.SUPER="super",n.TEST="test",n))(Yt||{}),en=(n=>(n.DEFAULT="default",n.SMALL="small",n.LARGE="large",n))(en||{}),tn=(n=>(n.APPROVING="APPROVING",n.COMPLETED="COMPLETED",n.REFUSED="REFUSED",n.REJECTED="REJECTED",n.TERMINATED="TERMINATED",n.WITHDRAWN="WITHDRAWN",n))(tn||{});const Qn={APPROVING:"sys.process.status.approving",COMPLETED:"sys.process.status.completed",REFUSED:"sys.process.status.refused",REJECTED:"sys.process.status.rejected",TERMINATED:"sys.process.status.terminated",WITHDRAWN:"sys.process.status.withdrawn"};var nn=(n=>(n.MY_APPLICATION="myApplication",n.MY_AGENT="myAgent",n.MY_DONE="myDone",n.MY_CUSTOM="myCustom",n.MY_CUSTOM_Modal="myCustomModal",n))(nn||{}),O=(n=>(n.DESIGN="design",n.WEB="web",n.MOBILE="mobile",n))(O||{});class sn{constructor(){r(this,"projectName",A.PORTAL);r(this,"tenantId","");r(this,"lang","zh-CN");r(this,"appInfo",{})}}const Fn=w.defineStore("global-store",{state(){return new sn},getters:{getAppInfo(){return this.appInfo}},actions:{getAppInfo(){return this.appInfo},setProjectName(n){this.$state.projectName=n},setTenantId(n){this.$state.tenantId=n},setLang(n){this.$state.lang=n}}});class rn{constructor(){r(this,"pinia",w.createPinia());r(this,"store");w.setActivePinia(this.pinia),this.store=Fn()}}const{toString:Zn}=Object.prototype;function Yn(n){return C(n)==="function"}function G(n){return C(n)==="object"}function es(n){return C(n)==="array"}const ts={"[object Boolean]":"boolean","[object Number]":"number","[object String]":"string","[object Function]":"function","[object Array]":"array","[object Date]":"date","[object RegExp]":"regExp","[object Undefined]":"undefined","[object Null]":"null","[object Object]":"object","[object Set]":"set","[object Map]":"map","[object WeakMap]":"weakmap"};function C(n){return ts[Zn.call(n)]}function ln(n,e,t=0,s=!1,c="/"){let l="";if(s&&!/^(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)$/.test(location.hostname)){const o=location.hostname;o.indexOf(".")!==o.lastIndexOf(".")&&(l=`;domain=${o.substring(o.indexOf("."),o.length)}`)}if(t!==0){const u=t*24*60*60*1e3,o=new Date(new Date().getTime()+u);document.cookie=`${n}=${escape(e)};path=${c};expires=${o.toUTCString()}${l}`}else document.cookie=`${n}=${escape(e)};path=${c}${l}`}function ns(n,e){ln(n,"",-1,e)}function ss(n){const e=new RegExp(`(^| )${n}=([^;]*)(;|$)`),t=document.cookie.match(e);return t&&t.length>1?unescape(t[2]):null}class D{constructor(){this.items=[]}get size(){return this.items.length}callSync(e,...t){const s=e||Object.create({});let c;for(let l=0;l<this.items.length;l++){const u=this.items[l];if(u.fn&&(c=u.fn(s,...t)),c===null){console.warn(`因${u.fn?u.fn.name:null}方法返回值为「null」,钩子中断执行。`,u);break}}return s}tap(e){if(e&&Yn(e)){const t={mode:"sync"};t.fn=e,this.items.push(t)}}removeTap(e){if(e)for(let t=0;t<this.items.length;t++){const s=this.items[t];e===s.fn&&this.items.splice(t,1)}}clear(){this.items=[]}}class m{constructor(){r(this,"map",new Map);r(this,"providers",new Map);r(this,"hooks",{register:new D,unregister:new D})}register(e,t){this.map.set(e,t);const s=t();this.providers.set(e,s),this.hooks.register.callSync(null,s)}unregister(e){this.map.delete(e);const t=this.providers.get(e);t&&(this.hooks.unregister.callSync(null,t),this.providers.delete(e))}getProvider(e){return this.providers.get(e)}getKeys(){return Array.from(this.map.keys())}getProviders(){return Array.from(this.providers.values())}}class P{constructor(){r(this,"map",new Map);r(this,"hooks",{register:new D,unregister:new D})}register(e,t){this.map.set(e,t),this.hooks.register.callSync(null,e,t)}unregister(e){this.map.delete(e),this.hooks.unregister.callSync(null,e)}get(e){return this.map.get(e)}keys(){return Array.from(this.map.keys())}}const N={TOKEN:"gct-token"},an="gct",un="/minio/plugins";function x(n,e){return T.mergeWith(T.cloneDeep(n),e,(t,s)=>{if(G(t)&&G(s))return T.mergeWith(T.cloneDeep(t),s,(c,l)=>es(c)?T.unionWith(c,l,T.isEqual):void 0)})}function cn(){return ss(N.TOKEN)}function rs(n){n?ln(N.TOKEN,n,0,!0):ns(N.TOKEN)}function ls(){const n=location.pathname.replace("/src/projects","").split("/");return{aid:n[2],pid:n[3]}}const as=(()=>{const n=navigator.userAgent,e=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/,t=window.innerWidth<=768,s="ontouchstart"in window||navigator.maxTouchPoints>0;return e.test(n)||t&&s})();function us(){return localStorage.getItem(Ut)||"UTC+08:00"}function is(n){n.interceptors.request.use(e=>{if(e.headers||(e.headers=new K.AxiosHeaders),Object.assign(e.headers,{Token:cn(),Source:as?502:501,Lang:_gct.store.lang,"Tenant-Id":_gct.store.tenantId,Timezone:us()}),!e.headers["App-Tag"])if(e.url.includes("/gct-apaas/")){const t=ls();e.headers["App-Tag"]=t.aid,e.headers.Module="TENANT_CENTER"}else e.headers["App-Tag"]="__platform__";return[A.TENANT_CENTER,A.APP_DESIGNER,A.WEB_RENDER].includes(_gct.store.projectName)?e.headers.Module="TENANT_CENTER":_gct.store.projectName===A.BACKEND_MANAGEMENT&&(e.headers.Module="BACKEND_MANAGEMENT"),e})}class on{constructor(e={}){r(this,"instance");this.options=e,this.instance=K.create(x({baseURL:"/gct-apaas/api"},e)),this.use(is)}use(e){e(this.instance)}get(e,t={},s={},c={}){return this.request(e,t,s,{...c,method:"GET"})}post(e,t={},s={},c={}){return this.request(e,t,s,{...c,method:"POST"})}put(e,t={},s={},c={}){return this.request(e,t,s,{...c,method:"PUT"})}delete(e,t={},s={},c={}){return this.request(e,t,s,{...c,method:"DELETE"})}async request(e,t,s,c={}){if(s){const u=An.stringify(s,{arrayFormat:"brackets"});u&&(e.includes("?")?e+=`&${u}`:e+=`?${u}`)}const l=await this.instance.request(x({url:e,data:JSON.stringify(t||{}),params:s,timeout:2*60*1e3,headers:{"Content-Type":B.JSON}},c));if(l.status>=200&&l.status<300)return l.data;throw l}}const cs="is-";function v(n,e,t,s,c){let l=`${n}-${e}`;return t&&(l+=`-${t}`),s&&(l+=`__${s}`),c&&(l+=`--${c}`),l}class gn{constructor(e,t){r(this,"namespace");this.block=e,this.namespace=t||an}b(e=""){return v(this.namespace,this.block,e,"","")}e(e){return e?v(this.namespace,this.block,"",e,""):""}m(e){return e?v(this.namespace,this.block,"","",e):""}be(e,t){return e&&t?v(this.namespace,this.block,e,t,""):""}em(e,t){return e&&t?v(this.namespace,this.block,"",e,t):""}bm(e,t){return e&&t?v(this.namespace,this.block,e,"",t):""}bem(e,t,s){return e&&t&&s?v(this.namespace,this.block,e,t,s):""}is(e,t){return e&&t?`${cs}${e}`:""}cssVar(e){const t={};for(const s in e)e[s]&&(t[this.cssVarName(s)]=e[s]);return t}cssVarBlock(e){const t={};for(const s in e)e[s]&&(t[this.cssVarBlockName(s)]=e[s]);return t}cssVarName(e){return`--${this.namespace}-${e}`}cssVarBlockName(e){return`--${this.namespace}-${this.block}-${e}`}}function os(n){return n&&n.__esModule&&Object.prototype.hasOwnProperty.call(n,"default")?n.default:n}var M,V;function gs(){if(V)return M;V=1;function n(c){if(typeof c!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(c))}function e(c,l){for(var u="",o=0,p=-1,y=0,g,h=0;h<=c.length;++h){if(h<c.length)g=c.charCodeAt(h);else{if(g===47)break;g=47}if(g===47){if(!(p===h-1||y===1))if(p!==h-1&&y===2){if(u.length<2||o!==2||u.charCodeAt(u.length-1)!==46||u.charCodeAt(u.length-2)!==46){if(u.length>2){var _=u.lastIndexOf("/");if(_!==u.length-1){_===-1?(u="",o=0):(u=u.slice(0,_),o=u.length-1-u.lastIndexOf("/")),p=h,y=0;continue}}else if(u.length===2||u.length===1){u="",o=0,p=h,y=0;continue}}l&&(u.length>0?u+="/..":u="..",o=2)}else u.length>0?u+="/"+c.slice(p+1,h):u=c.slice(p+1,h),o=h-p-1;p=h,y=0}else g===46&&y!==-1?++y:y=-1}return u}function t(c,l){var u=l.dir||l.root,o=l.base||(l.name||"")+(l.ext||"");return u?u===l.root?u+o:u+c+o:o}var s={resolve:function(){for(var l="",u=!1,o,p=arguments.length-1;p>=-1&&!u;p--){var y;p>=0?y=arguments[p]:(o===void 0&&(o=process.cwd()),y=o),n(y),y.length!==0&&(l=y+"/"+l,u=y.charCodeAt(0)===47)}return l=e(l,!u),u?l.length>0?"/"+l:"/":l.length>0?l:"."},normalize:function(l){if(n(l),l.length===0)return".";var u=l.charCodeAt(0)===47,o=l.charCodeAt(l.length-1)===47;return l=e(l,!u),l.length===0&&!u&&(l="."),l.length>0&&o&&(l+="/"),u?"/"+l:l},isAbsolute:function(l){return n(l),l.length>0&&l.charCodeAt(0)===47},join:function(){if(arguments.length===0)return".";for(var l,u=0;u<arguments.length;++u){var o=arguments[u];n(o),o.length>0&&(l===void 0?l=o:l+="/"+o)}return l===void 0?".":s.normalize(l)},relative:function(l,u){if(n(l),n(u),l===u||(l=s.resolve(l),u=s.resolve(u),l===u))return"";for(var o=1;o<l.length&&l.charCodeAt(o)===47;++o);for(var p=l.length,y=p-o,g=1;g<u.length&&u.charCodeAt(g)===47;++g);for(var h=u.length,_=h-g,I=y<_?y:_,S=-1,f=0;f<=I;++f){if(f===I){if(_>I){if(u.charCodeAt(g+f)===47)return u.slice(g+f+1);if(f===0)return u.slice(g+f)}else y>I&&(l.charCodeAt(o+f)===47?S=f:f===0&&(S=0));break}var k=l.charCodeAt(o+f),yn=u.charCodeAt(g+f);if(k!==yn)break;k===47&&(S=f)}var b="";for(f=o+S+1;f<=p;++f)(f===p||l.charCodeAt(f)===47)&&(b.length===0?b+="..":b+="/..");return b.length>0?b+u.slice(g+S):(g+=S,u.charCodeAt(g)===47&&++g,u.slice(g))},_makeLong:function(l){return l},dirname:function(l){if(n(l),l.length===0)return".";for(var u=l.charCodeAt(0),o=u===47,p=-1,y=!0,g=l.length-1;g>=1;--g)if(u=l.charCodeAt(g),u===47){if(!y){p=g;break}}else y=!1;return p===-1?o?"/":".":o&&p===1?"//":l.slice(0,p)},basename:function(l,u){if(u!==void 0&&typeof u!="string")throw new TypeError('"ext" argument must be a string');n(l);var o=0,p=-1,y=!0,g;if(u!==void 0&&u.length>0&&u.length<=l.length){if(u.length===l.length&&u===l)return"";var h=u.length-1,_=-1;for(g=l.length-1;g>=0;--g){var I=l.charCodeAt(g);if(I===47){if(!y){o=g+1;break}}else _===-1&&(y=!1,_=g+1),h>=0&&(I===u.charCodeAt(h)?--h===-1&&(p=g):(h=-1,p=_))}return o===p?p=_:p===-1&&(p=l.length),l.slice(o,p)}else{for(g=l.length-1;g>=0;--g)if(l.charCodeAt(g)===47){if(!y){o=g+1;break}}else p===-1&&(y=!1,p=g+1);return p===-1?"":l.slice(o,p)}},extname:function(l){n(l);for(var u=-1,o=0,p=-1,y=!0,g=0,h=l.length-1;h>=0;--h){var _=l.charCodeAt(h);if(_===47){if(!y){o=h+1;break}continue}p===-1&&(y=!1,p=h+1),_===46?u===-1?u=h:g!==1&&(g=1):u!==-1&&(g=-1)}return u===-1||p===-1||g===0||g===1&&u===p-1&&u===o+1?"":l.slice(u,p)},format:function(l){if(l===null||typeof l!="object")throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof l);return t("/",l)},parse:function(l){n(l);var u={root:"",dir:"",base:"",ext:"",name:""};if(l.length===0)return u;var o=l.charCodeAt(0),p=o===47,y;p?(u.root="/",y=1):y=0;for(var g=-1,h=0,_=-1,I=!0,S=l.length-1,f=0;S>=y;--S){if(o=l.charCodeAt(S),o===47){if(!I){h=S+1;break}continue}_===-1&&(I=!1,_=S+1),o===46?g===-1?g=S:f!==1&&(f=1):g!==-1&&(f=-1)}return g===-1||_===-1||f===0||f===1&&g===_-1&&g===h+1?_!==-1&&(h===0&&p?u.base=u.name=l.slice(1,_):u.base=u.name=l.slice(h,_)):(h===0&&p?(u.name=l.slice(1,g),u.base=l.slice(1,_)):(u.name=l.slice(h,g),u.base=l.slice(h,_)),u.ext=l.slice(g,_)),h>0?u.dir=l.slice(0,h-1):p&&(u.dir="/"),u},sep:"/",delimiter:":",win32:null,posix:null};return s.posix=s,M=s,M}var ps=gs();const R=os(ps);class U{static async loadPluginConfig(e,t,s=[]){const c=`${e}-${t}-${s.join("_")}`;if(this.cache.has(c))return this.cache.get(c);const u=(await _gct.api.platform.plugin.getList()).data;return u.length>0&&this.cache.set(c,u),u}static async loadPlugins(e,t){if(t.length>0){const s=t.map(l=>{const u=R.join(un,l.name,"latest/dist");return{imports:{[l.name]:`${u}/${e}.system.min.js`},styles:{[l.name]:`${u}/${e}.min.css`}}}),c=[];return s.forEach(l=>{System.addImportMap(l),l.imports&&Object.keys(l.imports).forEach(u=>{c.push(System.import(u))})}),Promise.all(c)}return[]}static async loadPlugin(e,t,s,c){const l=`${t}-${s}-${c.join("_")}`,u=await this.loadPluginConfig(t,s);if(!this.cacheModule.has(l)){const o=await this.loadPlugins(t,u);o.forEach(p=>{p.default&&e.use(p.default)}),this.cacheModule.set(l,o)}return u}static loadDesignPlugin(e,t,s=[]){return this.loadPlugin(e,O.DESIGN,t,s)}static loadMobilePlugin(e,t=[]){return this.loadPlugin(e,O.MOBILE,E.MOBILE,t)}static loadWebPlugin(e,t=[]){return this.loadPlugin(e,O.WEB,E.WEB,t)}}r(U,"cache",new Map),r(U,"cacheModule",new Map);class ds{constructor(e,t=!1){r(this,"baseDir");r(this,"url");this.isDev=t,this.url=new URL(e),this.baseDir=R.dirname(this.url.pathname)}dir(e){return this.isDev===!0?e:this.url.origin+R.resolve(this.baseDir,e)}}class pn{constructor(e){r(this,"http");this.http=new on({baseURL:e})}_put(e,t,s,c){return this.http.put(s!=null&&s.id?R.join(e,s==null?void 0:s.id):e,t||{},s||{},c)}_get(e,t,s,c){return this.http.get(e,t||{},s||{},c)}_delete(e,t,s,c){return this.http.delete(e,t||{},s||{},c)}_post(e,t,s,c){return this.http.post(e,t||{},s||{},c)}}class a extends pn{constructor(e){super(R.join("/gct-apaas/api",e))}}class hs extends a{constructor(){super("app-branch")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ys extends a{constructor(){super("app-global-settings")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class _s extends a{constructor(){super("app-granted-user")}async post(e,t={}){return this._post("",e,null,t)}async postBatch(e,t={}){return this._post("batch",e,null,t)}async getGrantedStatistic(e={}){return this._get("grantedStatistic",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async getRemoveAndTransfer(e,t={}){return this._get("removeAndTransfer",null,e,t)}async getUngranted(e={}){return this._get("ungranted",null,null,e)}}class fs extends a{constructor(){super("app-org")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e={}){return this._get("info",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async postTransferAndDelete(e,t={}){return this._post("transferAndDelete",e,null,t)}async postUser(e,t={}){return this._post("user",e,null,t)}async getUser(e,t={}){return this._get("user",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ss extends a{constructor(){super("app-publish-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Is extends a{constructor(){super("app-state")}async getDraft(e={}){return this._get("draft",null,null,e)}}class vs extends a{constructor(){super("app-user")}async post(e,t={}){return this._post("",e,null,t)}async putDisable(e,t={}){return this._put("disable",null,e,t)}async putEnable(e,t={}){return this._put("enable",null,e,t)}async getInfo(e={}){return this._get("info",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async postRemove(e,t={}){return this._post("remove",e,null,t)}async postReset(e,t={}){return this._post("reset",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class As extends a{constructor(){super("approval-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}let Ls=class extends a{constructor(){super("audit-log")}async postExport(e,t={}){return this._post("export",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getModules(e={}){return this._get("modules",null,null,e)}async getOperateTypes(e,t={}){return this._get("operateTypes",null,e,t)}async getOperators(e={}){return this._get("operators",null,null,e)}async postPage(e,t={}){return this._post("page",e,null,t)}async postSave(e,t={}){return this._post("save",e,null,t)}};class Ts extends a{constructor(){super("basic-config")}async post(e,t={}){return this._post("",e,null,t)}async getDetail(e,t={}){return this._get("detail",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async postTheme(e,t={}){return this._post("theme",e,null,t)}async putKey(e,t={}){return this._put("{key}",e,null,t)}}class Rs extends a{constructor(){super("biz-event")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class bs extends a{constructor(){super("biz-process-definition")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async deleteDeleteCategory(e,t={}){return this._delete("deleteCategory",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Os extends a{constructor(){super("biz-process-definition-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCopy(e={}){return this._post("copy",null,null,e)}async postDeploy(e,t={}){return this._post("deploy",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async postSave(e,t={}){return this._post("save",e,null,t)}async postSaveAndDeploy(e,t={}){return this._post("saveAndDeploy",e,null,t)}async getId(e,t={}){return this._get("",null,e,t)}}class Es extends a{constructor(){super("biz-service-crud")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getDataModel(e={}){return this._get("data-model",null,null,e)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getViewModel(e,t={}){return this._get("view-model",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ds extends a{constructor(){super("biz-service")}async getModelKey(e,t={}){return this._get("{modelKey}",null,e,t)}async postModelKey(e,t={}){return this._post("{modelKey}",null,e,t)}async putModelKey(e,t={}){return this._put("{modelKey}",null,e,t)}async deleteModelKey(e,t={}){return this._delete("{modelKey}",null,e,t)}}class Ns extends a{constructor(){super("bom")}async postImport(e={}){return this._post("import",null,null,e)}}let Ms=class extends a{constructor(){super("category")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getGetListRdoOrNdo(e,t={}){return this._get("getListRdoOrNdo",null,e,t)}async getInfo(e={}){return this._get("info",null,null,e)}async getList(e,t={}){return this._get("list",null,e,t)}async getListComplete(e,t={}){return this._get("listComplete",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}};class ws extends a{constructor(){super("category-relation")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e={}){return this._get("info",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ms extends a{constructor(){super("code-ts")}async getList(e={}){return this._get("list",null,null,e)}}class Ps extends a{constructor(){super("commit-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getCanPublishProdReleaseTagList(e={}){return this._get("canPublishProdReleaseTagList",null,null,e)}async getCanReleaseTagList(e={}){return this._get("canReleaseTagList",null,null,e)}async postCommit(e,t={}){return this._post("commit",e,null,t)}async getGetLatestCommit(e={}){return this._get("getLatestCommit",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async getRelease(e,t={}){return this._get("release",null,e,t)}async getViewDetail(e,t={}){return this._get("viewDetail",null,e,t)}async getViewDraft(e={}){return this._get("viewDraft",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class xs extends a{constructor(){super("data-model")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getBizService(e,t={}){return this._get("biz-service",null,e,t)}async postBizService(e,t={}){return this._post("biz-service",null,e,t)}async putBizService(e,t={}){return this._put("biz-service",null,e,t)}async deleteBizService(e,t={}){return this._delete("biz-service",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Us extends a{constructor(){super("designer-common")}async getEnumModelField(e,t={}){return this._get("enumModelField",null,e,t)}async getGetApp(e={}){return this._get("getApp",null,null,e)}async getGetCanBeUsedOrg(e={}){return this._get("getCanBeUsedOrg",null,null,e)}async getGetCanBeUsedOrgUser(e,t={}){return this._get("getCanBeUsedOrgUser",null,e,t)}async getGetUserGroupUser(e,t={}){return this._get("getUserGroupUser",null,e,t)}async getGetVisibleOrg(e={}){return this._get("getVisibleOrg",null,null,e)}async getGetVisibleOrgUser(e,t={}){return this._get("getVisibleOrgUser",null,e,t)}async getGetVisibleUser(e={}){return this._get("getVisibleUser",null,null,e)}async getGetVisibleUserAndVisibleOrgUser(e,t={}){return this._get("getVisibleUserAndVisibleOrgUser",null,e,t)}async getListUserByIds(e,t={}){return this._get("listUserByIds",null,e,t)}async getTableEntityModel(e,t={}){return this._get("table-entity-model",null,e,t)}async postUpload(e={}){return this._post("upload",null,null,e)}async getUser(e={}){return this._get("user",null,null,e)}}class Bs extends a{constructor(){super("designer-lock")}async postCancelOccupyPage(e,t={}){return this._post("cancelOccupyPage",e,null,t)}async getGetPageOccupyMsg(e,t={}){return this._get("getPageOccupyMsg",null,e,t)}async postLockPage(e,t={}){return this._post("lockPage",e,null,t)}async postOccupyPage(e,t={}){return this._post("occupyPage",e,null,t)}async postUnLockPage(e,t={}){return this._post("unLockPage",e,null,t)}}class Cs extends a{constructor(){super("designer-operate-log")}async getPage(e,t={}){return this._get("page",null,e,t)}}class ks extends a{constructor(){super("devops")}async getListAllDigitsFields(e={}){return this._get("listAllDigitsFields",null,null,e)}async postUpdateDigits(e,t={}){return this._post("updateDigits",e,null,t)}}class Gs extends a{constructor(){super("doc-outline")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getListByInstance(e,t={}){return this._get("listByInstance",null,e,t)}async getListByRefId(e,t={}){return this._get("listByRefId",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getSheet(e,t={}){return this._get("sheet",null,e,t)}async getSheetByInstance(e,t={}){return this._get("sheetByInstance",null,e,t)}async getSheetByRefId(e,t={}){return this._get("sheetByRefId",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Vs extends a{constructor(){super("document")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCopyVersion(e,t={}){return this._post("copyVersion",e,null,t)}async putDesign(e,t={}){return this._put("design",e,null,t)}async getDocumentDataClean(e={}){return this._get("documentDataClean",null,null,e)}async getGetVersionById(e,t={}){return this._get("getVersionById",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getListVersionById(e,t={}){return this._get("listVersionById",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async deleteRemoveVersionById(e,t={}){return this._delete("removeVersionById",null,e,t)}async postSaveVersion(e,t={}){return this._post("saveVersion",e,null,t)}async putUpdateVersionById(e,t={}){return this._put("updateVersionById",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ks extends a{constructor(){super("edhr-instance")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getFindByMaterialNo(e,t={}){return this._get("findByMaterialNo",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getReverse(e,t={}){return this._get("reverse",null,e,t)}async putUpdateInstanceStatusById4Archived(e={}){return this._put("updateInstanceStatusById4Archived",null,null,e)}}class Xs extends a{constructor(){super("edhr-instance-relation")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getListChild(e,t={}){return this._get("listChild",null,e,t)}}class Ws extends a{constructor(){super("edhr-tmpl")}async postCopy(e={}){return this._post("copy",null,null,e)}async postCopyVersion(e,t={}){return this._post("copyVersion",e,null,t)}async getGetVersionById(e,t={}){return this._get("getVersionById",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getListVersionById(e,t={}){return this._get("listVersionById",null,e,t)}async deleteRemoveById(e,t={}){return this._delete("removeById",null,e,t)}async deleteRemoveVersionById(e,t={}){return this._delete("removeVersionById",null,e,t)}async postSave(e,t={}){return this._post("save",e,null,t)}async postSaveVersion(e,t={}){return this._post("saveVersion",e,null,t)}async putUpdateVersionById(e,t={}){return this._put("updateVersionById",e,null,t)}}class Hs extends a{constructor(){super("ele-search")}async getSearchByKey(e,t={}){return this._get("searchByKey",null,e,t)}}class $s extends a{constructor(){super("enum-model")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e={}){return this._get("info",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putUpdateIconState(e,t={}){return this._put("updateIconState",e,null,t)}async putUpdateTextState(e,t={}){return this._put("updateTextState",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class js extends a{constructor(){super("enum-model-field")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e={}){return this._get("info",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class zs extends a{constructor(){super("event")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class qs extends a{constructor(){super("event-log")}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}}class Js extends a{constructor(){super("excel-tmpl")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postConfig(e,t={}){return this._post("config",e,null,t)}async getDetail(e,t={}){return this._get("detail",null,e,t)}async getDownload(e={}){return this._get("download",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getInit(e,t={}){return this._get("init",null,e,t)}async postInit(e,t,s={}){return this._post("init",t,e,s)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async postV1(e,t={}){return this._post("v1",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Qs extends a{constructor(){super("excel")}async getData(e,t={}){return this._get("data",null,e,t)}async postData(e,t={}){return this._post("data",null,e,t)}}class Fs extends a{constructor(){super("field-meta")}async delete(e,t={}){return this._delete("",null,e,t)}async postComplete(e={}){return this._post("complete",null,null,e)}async putDecimal(e={}){return this._put("decimal",null,null,e)}async postFunc(e,t={}){return this._post("func",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getListConditionField(e,t={}){return this._get("listConditionField",null,e,t)}async postMove(e,t={}){return this._post("move",e,null,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putPage(e={}){return this._put("page",null,null,e)}async postPreview(e,t={}){return this._post("preview",e,null,t)}async postSave(e,t={}){return this._post("save",e,null,t)}async putUnique(e={}){return this._put("unique",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Zs extends a{constructor(){super("field")}async deleteRemove(e,t={}){return this._delete("remove",null,e,t)}}class Ys extends a{constructor(){super("file-resource")}async postBase64Upload(e,t={}){return this._post("base64Upload",e,null,t)}async postList(e,t={}){return this._post("list",e,null,t)}async postUpload(e,t={}){return this._post("upload",null,e,t)}}let er=class extends a{constructor(){super("file")}async postUpload(e,t={}){return this._post("upload",null,e,t)}};class tr extends a{constructor(){super("formRelate")}async getCategory(e,t={}){return this._get("category",null,e,t)}async postCategory(e,t={}){return this._post("category",e,null,t)}async deleteCategory(e,t={}){return this._delete("category",null,e,t)}async putCategory(e,t={}){return this._put("category",e,null,t)}async deleteDeleteCategory(e,t={}){return this._delete("deleteCategory",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getListAllCategory(e,t={}){return this._get("listAllCategory",null,e,t)}async getListAllVersion(e,t={}){return this._get("listAllVersion",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}}class nr extends a{constructor(){super("front-operate-log")}async getPage(e,t={}){return this._get("page",null,e,t)}}class sr extends a{constructor(){super("global-method")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}let rr=class extends a{constructor(){super("i18n-info")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getLang(e,t={}){return this._get("lang",null,e,t)}async postLang(e,t={}){return this._post("lang",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putKey(e,t={}){return this._put("{key}",e,null,t)}};class lr extends a{constructor(){super("job")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCron(e,t={}){return this._post("cron",e,null,t)}async postExec(e,t={}){return this._post("exec",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putStatus(e,t={}){return this._put("status",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ar extends a{constructor(){super("job-log")}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}}class ur extends a{constructor(){super("js-engine")}async getExec(e,t={}){return this._get("exec",null,e,t)}async postExecute(e,t={}){return this._post("execute",e,null,t)}}class ir extends a{constructor(){super("label")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCopyVersion(e,t={}){return this._post("copyVersion",e,null,t)}async getExport(e,t={}){return this._get("export",null,e,t)}async getGetVersionById(e,t={}){return this._get("getVersionById",null,e,t)}async postImport(e={}){return this._post("import",null,null,e)}async postLabelDuplicateNameCheck(e,t={}){return this._post("labelDuplicateNameCheck",e,null,t)}async getLabelParentDataClean(e={}){return this._get("labelParentDataClean",null,null,e)}async getList(e,t={}){return this._get("list",null,e,t)}async getListFont(e={}){return this._get("listFont",null,null,e)}async getListVersionById(e,t={}){return this._get("listVersionById",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async deleteRemoveVersionById(e,t={}){return this._delete("removeVersionById",null,e,t)}async postSaveVersion(e,t={}){return this._post("saveVersion",e,null,t)}async getTest(e,t={}){return this._get("test",null,e,t)}async putUpdateDesigner(e,t={}){return this._put("updateDesigner",e,null,t)}async putUpdateVersionById(e,t={}){return this._put("updateVersionById",e,null,t)}async postXmlSetting(e,t={}){return this._post("xmlSetting",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class cr extends a{constructor(){super("label-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class or extends a{constructor(){super("medPro")}async postModelMeta(e,t={}){return this._post("modelMeta",e,null,t)}async getModelMeta(e,t={}){return this._get("modelMeta",null,e,t)}}class gr extends a{constructor(){super("menu-config")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getAvailable(e,t={}){return this._get("available",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async postMove(e,t={}){return this._post("move",e,null,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class pr extends a{constructor(){super("merge-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class dr extends a{constructor(){super("message-record")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}}let hr=class extends a{constructor(){super("message-setting")}async getFindAllByType(e,t={}){return this._get("findAllByType",null,e,t)}async postSendMessageByType(e,t={}){return this._post("sendMessageByType",e,null,t)}};class yr extends a{constructor(){super("message-tmpl")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getListByModelKey(e,t={}){return this._get("listByModelKey",null,e,t)}async putOpened(e,t={}){return this._put("opened",e,null,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async postProcessSend(e,t={}){return this._post("processSend",e,null,t)}async postSend(e,t={}){return this._post("send",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class _r extends a{constructor(){super("mobile-homepage")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetSelected(e={}){return this._get("getSelected",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async postSelect(e,t={}){return this._post("select",e,null,t)}async putUpdateDesignerJson(e,t={}){return this._put("updateDesignerJson",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class fr extends a{constructor(){super("mobile-page")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCopyById(e,t={}){return this._post("copyById",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putUpdateDesignerJson(e,t={}){return this._put("updateDesignerJson",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Sr extends a{constructor(){super("model-comprehensive")}async deleteBizServiceApi(e,t={}){return this._delete("biz-service-api",null,e,t)}async getBizServiceApi(e,t={}){return this._get("biz-service-api",null,e,t)}async putBizServiceApi(e,t={}){return this._put("biz-service-api",e,null,t)}async postBizServiceApi(e,t={}){return this._post("biz-service-api",e,null,t)}async postBizService(e,t={}){return this._post("biz-service",null,e,t)}async getBizService(e,t={}){return this._get("biz-service",null,e,t)}async putBizService(e,t={}){return this._put("biz-service",null,e,t)}async deleteBizService(e,t={}){return this._delete("biz-service",null,e,t)}async getEnum(e,t={}){return this._get("enum",null,e,t)}async postExport(e,t={}){return this._post("export",null,e,t)}async getField(e,t={}){return this._get("field",null,e,t)}async getMethod(e,t={}){return this._get("method",null,e,t)}async getModel(e,t={}){return this._get("model",null,e,t)}async postQueryAllModelDataAndDrillData(e,t={}){return this._post("queryAllModelDataAndDrillData",e,null,t)}async postQueryFieldValueByRefChainData(e,t={}){return this._post("queryFieldValueByRefChainData",e,null,t)}async postQueryModelDataAndDrillData(e,t={}){return this._post("queryModelDataAndDrillData",e,null,t)}async postQueryRefChainData(e,t={}){return this._post("queryRefChainData",e,null,t)}async postQueryRefData(e,t={}){return this._post("queryRefData",e,null,t)}async postQueryRefDataById(e,t={}){return this._post("queryRefDataById",e,null,t)}async postQueryRefDataByIds(e,t={}){return this._post("queryRefDataByIds",e,null,t)}async postQuerySearchRefChainData(e,t={}){return this._post("querySearchRefChainData",e,null,t)}async getSubModel(e,t={}){return this._get("sub-model",null,e,t)}}class Ir extends a{constructor(){super("model-data")}async postAllModelLiquibaseSoftDeleteDataClean(e={}){return this._post("allModelLiquibaseSoftDeleteDataClean",null,null,e)}async postAllModelSoftDeleteDataClean(e={}){return this._post("allModelSoftDeleteDataClean",null,null,e)}async getCheckFieldValueExist(e,t={}){return this._get("checkFieldValueExist",null,e,t)}async postQueryRefData(e,t={}){return this._post("queryRefData",e,null,t)}async postSingleModelSoftDeleteDataClean(e,t={}){return this._post("singleModelSoftDeleteDataClean",null,e,t)}}class vr extends a{constructor(){super("model-meta")}async delete(e,t={}){return this._delete("",null,e,t)}async getAgg(e,t={}){return this._get("agg",null,e,t)}async getBy(e,t={}){return this._get("by",null,e,t)}async putConstant(e,t={}){return this._put("constant",e,null,t)}async getDetail(e,t={}){return this._get("detail",null,e,t)}async putDisplay(e={}){return this._put("display",null,null,e)}async getEr(e={}){return this._get("er",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getListAll(e={}){return this._get("list-all",null,null,e)}async getListAllModelAndFieldByName(e,t={}){return this._get("listAllModelAndFieldByName",null,e,t)}async getListMasterModel(e,t={}){return this._get("listMasterModel",null,e,t)}async getListModelReferencedBy(e,t={}){return this._get("listModelReferencedBy",null,e,t)}async getListSlaveModel(e,t={}){return this._get("listSlaveModel",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putPage(e={}){return this._put("page",null,null,e)}async getPermissionEnabled(e,t={}){return this._get("permission-enabled",null,e,t)}async postSave(e,t={}){return this._post("save",e,null,t)}async putSupportMessage(e={}){return this._put("support-message",null,null,e)}async getSupportProcess(e={}){return this._get("support-process",null,null,e)}async getTranslateModelFieldExp(e,t={}){return this._get("translateModelFieldExp",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}async putModelKey(e={}){return this._put("{modelKey}",null,null,e)}}class Ar extends a{constructor(){super("model-method")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getDataModel(e={}){return this._get("data-model",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getViewModel(e={}){return this._get("view-model",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Lr extends a{constructor(){super("model")}async deleteRemove(e,t={}){return this._delete("remove",null,e,t)}}class Tr extends a{constructor(){super("online-form-change-history")}async postInsertBatch(e,t={}){return this._post("insertBatch",e,null,t)}async getList(e,t={}){return this._get("list",null,e,t)}}class Rr extends a{constructor(){super("online-form-instance")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getDataIds(e,t={}){return this._get("dataIds",null,e,t)}async getFindByOfTmplIdAndEdhrInstanceId(e,t={}){return this._get("findByOfTmplIdAndEdhrInstanceId",null,e,t)}async getFindOfTaskBySerialNo4Change(e,t={}){return this._get("findOfTaskBySerialNo4Change",null,e,t)}async getFindRelationInfoById(e,t={}){return this._get("findRelationInfoById",null,e,t)}async getGetRelatedProduct(e,t={}){return this._get("getRelatedProduct",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async postInfos(e={}){return this._post("infos",null,null,e)}async postInsert4Edhr(e,t={}){return this._post("insert4Edhr",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async getTask(e,t={}){return this._get("task",null,e,t)}async postTask(e,t={}){return this._post("task",e,null,t)}async putTask(e,t={}){return this._put("task",e,null,t)}}class br extends a{constructor(){super("online-form-log")}async getList(e,t={}){return this._get("list",null,e,t)}}class Or extends a{constructor(){super("online-form-tmpl-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Er extends a{constructor(){super("online-form-tmpl")}async postCopy(e={}){return this._post("copy",null,null,e)}async postCopyVersion(e,t={}){return this._post("copyVersion",e,null,t)}async getGetVersionById(e,t={}){return this._get("getVersionById",null,e,t)}async postInfos(e,t={}){return this._post("infos",e,null,t)}async getListVersionById(e,t={}){return this._get("listVersionById",null,e,t)}async getModel(e={}){return this._get("model",null,null,e)}async postRelease(e,t,s={}){return this._post("release",t,e,s)}async deleteRemoveById(e,t={}){return this._delete("removeById",null,e,t)}async deleteRemoveVersionById(e,t={}){return this._delete("removeVersionById",null,e,t)}async postSave(e,t={}){return this._post("save",e,null,t)}async postSaveField(e,t={}){return this._post("saveField",e,null,t)}async postSaveOperation(e,t={}){return this._post("saveOperation",e,null,t)}async postSaveVersion(e,t={}){return this._post("saveVersion",e,null,t)}async getStash(e,t={}){return this._get("stash",null,e,t)}async putStash(e,t={}){return this._put("stash",e,null,t)}async putUpdateDesigner(e,t={}){return this._put("updateDesigner",e,null,t)}async putUpdateVersionById(e,t={}){return this._put("updateVersionById",e,null,t)}}class Dr extends a{constructor(){super("online-form")}async postBase(e,t={}){return this._post("base",e,null,t)}async postBiz(e,t={}){return this._post("biz",e,null,t)}async postProcess(e,t={}){return this._post("process",e,null,t)}async postStash(e,t={}){return this._post("stash",e,null,t)}}class Nr extends a{constructor(){super("online")}async getClients(e,t={}){return this._get("clients",null,e,t)}async getExit(e,t={}){return this._get("exit",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}}class Mr extends a{constructor(){super("openapi")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetApiInfo(e,t={}){return this._get("getApiInfo",null,e,t)}async getGetApiInfos(e={}){return this._get("getApiInfos",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class wr extends a{constructor(){super("page-designer-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}let mr=class extends a{constructor(){super("permission")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}};class Pr extends a{constructor(){super("pm-process-definition")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getListAllProcHasPublishedVersion(e,t={}){return this._get("listAllProcHasPublishedVersion",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class xr extends a{constructor(){super("pm-process-definition-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCopy(e={}){return this._post("copy",null,null,e)}async postDeploy(e,t={}){return this._post("deploy",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async postSave(e,t={}){return this._post("save",e,null,t)}async postSaveAndDeploy(e,t={}){return this._post("saveAndDeploy",e,null,t)}async postUpdateProcessUser(e,t={}){return this._post("updateProcessUser",e,null,t)}async getId(e,t={}){return this._get("",null,e,t)}}class Ur extends a{constructor(){super("pm-process-engine")}async postApprove(e,t={}){return this._post("approve",e,null,t)}async getHiTask(e,t={}){return this._get("hi-task",null,e,t)}async getInitialTask(e,t={}){return this._get("initial-task",null,e,t)}async getListAllAssignees(e={}){return this._get("listAllAssignees",null,null,e)}async getListAllInitiators(e={}){return this._get("listAllInitiators",null,null,e)}async getModel(e,t={}){return this._get("model",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async postProcExecute(e,t={}){return this._post("procExecute",e,null,t)}async getProcInstExtension(e,t={}){return this._get("procInstExtension",null,e,t)}async postReassign(e,t={}){return this._post("reassign",e,null,t)}async postRefuse(e,t={}){return this._post("refuse",e,null,t)}async postReject(e,t={}){return this._post("reject",e,null,t)}async postResubmit(e,t={}){return this._post("resubmit",e,null,t)}async postStartProcInst(e,t={}){return this._post("startProcInst",e,null,t)}async getTask(e,t={}){return this._get("task",null,e,t)}async postTerminate(e,t={}){return this._post("terminate",e,null,t)}async postWithdraw(e,t={}){return this._post("withdraw",e,null,t)}}class Br extends a{constructor(){super("print-designer")}async deleteCategory(e,t={}){return this._delete("category",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getListAllVersion(e,t={}){return this._get("listAllVersion",null,e,t)}async getRdo(e,t={}){return this._get("rdo",null,e,t)}}let Cr=class extends a{constructor(){super("print-log")}async postPage(e,t={}){return this._post("page",e,null,t)}async postPatchwork(e,t={}){return this._post("patchwork",e,null,t)}};class kr extends a{constructor(){super("print")}async postGenerateZplCode(e,t={}){return this._post("generateZplCode",e,null,t)}async postLabelBackEndPrint(e,t={}){return this._post("labelBackEndPrint",e,null,t)}async getPrintDropdownList(e={}){return this._get("printDropdownList",null,null,e)}async postSendPrintData(e,t={}){return this._post("sendPrintData",e,null,t)}}class Gr extends a{constructor(){super("process")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Vr extends a{constructor(){super("process-approval-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getApproveHistory(e,t={}){return this._get("approveHistory",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Kr extends a{constructor(){super("process-approve-user")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Xr extends a{constructor(){super("process-definition")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Wr extends a{constructor(){super("process-definition-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCopy(e={}){return this._post("copy",null,null,e)}async getFindByOfInstanceId(e={}){return this._get("findByOfInstanceId",null,null,e)}async getList(e,t={}){return this._get("list",null,e,t)}async postPublish(e={}){return this._post("publish",null,null,e)}async getId(e,t={}){return this._get("",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Hr extends a{constructor(){super("process-engine")}async postExecute(e,t={}){return this._post("execute",e,null,t)}async getHiTask(e,t={}){return this._get("hi-task",null,e,t)}async getInitialTask(e,t={}){return this._get("initial-task",null,e,t)}async getModel(e,t={}){return this._get("model",null,e,t)}async postReassignment(e,t={}){return this._post("reassignment",e,null,t)}async getTask(e,t={}){return this._get("task",null,e,t)}}class $r extends a{constructor(){super("process-event")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class jr extends a{constructor(){super("process-graph")}async getGraphInfo(e,t={}){return this._get("graphInfo",null,e,t)}}class zr extends a{constructor(){super("process-instance")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class qr extends a{constructor(){super("process-message-user")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Jr extends a{constructor(){super("process-node-definition")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Qr extends a{constructor(){super("process-path-user")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Fr extends a{constructor(){super("process-path")}async getFindAllByOfInstanceId(e,t={}){return this._get("findAllByOfInstanceId",null,e,t)}}class Zr extends a{constructor(){super("process-task-done")}async getPage(e,t={}){return this._get("page",null,e,t)}}class Yr extends a{constructor(){super("process-task-todo")}async getAllUser(e,t={}){return this._get("all-user",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}}class el extends a{constructor(){super("process-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postActivate(e={}){return this._post("activate",null,null,e)}async putDeploy(e,t={}){return this._put("deploy",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}}class tl extends a{constructor(){super("processTest")}async getCompleteTask(e,t={}){return this._get("completeTask",null,e,t)}async getDeploy(e,t={}){return this._get("deploy",null,e,t)}async getReadXml(e,t={}){return this._get("readXml",null,e,t)}async getSignal(e,t={}){return this._get("signal",null,e,t)}async getStart(e,t={}){return this._get("start",null,e,t)}async getUpdateVar(e,t={}){return this._get("updateVar",null,e,t)}async getWithdraw(e,t={}){return this._get("withdraw",null,e,t)}}class nl extends a{constructor(){super("product-release")}async getGetProductReleaseByMaterialNo(e,t={}){return this._get("getProductReleaseByMaterialNo",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}}class sl extends a{constructor(){super("publish-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCreateRelease(e,t={}){return this._post("createRelease",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async postPublishToProd(e,t={}){return this._post("publishToProd",e,null,t)}async postPublishToTest(e,t={}){return this._post("publishToTest",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}let rl=class extends a{constructor(){super("regexp")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}},ll=class extends a{constructor(){super("role")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t={}){return this._put("",null,e,t)}},al=class extends a{constructor(){super("role-permission")}async post(e,t={}){return this._post("",e,null,t)}async postBulk(e,t={}){return this._post("bulk",e,null,t)}async getMenu(e,t={}){return this._get("menu",null,e,t)}async postRemove(e,t={}){return this._post("remove",e,null,t)}};class ul extends a{constructor(){super("script")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getInfoByKey(e,t={}){return this._get("infoByKey",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class il extends a{constructor(){super("script-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putSetVersionActive(e,t={}){return this._put("setVersionActive",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class cl extends a{constructor(){super("script-version-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}}class ol extends a{constructor(){super("service-orchestration")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getInfoByKey(e,t={}){return this._get("infoByKey",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class gl extends a{constructor(){super("service-orchestration-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putSetVersionActive(e,t={}){return this._put("setVersionActive",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class pl extends a{constructor(){super("service-orchestration-version-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}}class dl extends a{constructor(){super("sign-history")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class hl extends a{constructor(){super("signature")}async postGetSignatureImage(e,t={}){return this._post("getSignatureImage",e,null,t)}}class yl extends a{constructor(){super("sql-view-model")}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class _l extends a{constructor(){super("sql-view")}async postBizService(e,t={}){return this._post("biz-service",null,e,t)}}class fl extends a{constructor(){super("stash")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getFindByClientKey(e,t={}){return this._get("findByClientKey",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Sl extends a{constructor(){super("sub-model-process")}async postAllSubModelDataClean(e={}){return this._post("allSubModelDataClean",null,null,e)}}class Il extends a{constructor(){super("sys-config")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class vl extends a{constructor(){super("system-var")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetSystemVarByKeys(e,t={}){return this._get("getSystemVarByKeys",null,e,t)}async getGetVarByKeys(e,t={}){return this._get("getVarByKeys",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getListSystemVarCache(e={}){return this._get("listSystemVarCache",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Al extends a{constructor(){super("trace-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getFindByTraceId(e,t={}){return this._get("findByTraceId",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ll extends a{constructor(){super("trace-log-details")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getInfoTree(e,t={}){return this._get("infoTree",null,e,t)}async getInfoTreeById(e,t={}){return this._get("infoTreeById",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Tl extends a{constructor(){super("trace-mainline")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Rl extends a{constructor(){super("trace-mainline-ext")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class bl extends a{constructor(){super("trace-setting")}async delete(e,t={}){return this._delete("",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getTreeByModelKey(e,t={}){return this._get("treeByModelKey",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ol extends a{constructor(){super("user-group")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getSearch(e,t={}){return this._get("search",null,e,t)}async getUser(e={}){return this._get("user",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class El extends a{constructor(){super("user-group-relation")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postBatch(e,t={}){return this._post("batch",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Dl extends a{constructor(){super("view-model")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getBizService(e,t={}){return this._get("biz-service",null,e,t)}async postBizService(e,t={}){return this._post("biz-service",null,e,t)}async putBizService(e,t={}){return this._put("biz-service",null,e,t)}async deleteBizService(e,t={}){return this._delete("biz-service",null,e,t)}async getField(e,t={}){return this._get("field",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async getSql(e,t={}){return this._get("sql",null,e,t)}async putSupportMessage(e={}){return this._put("support-message",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Nl extends a{constructor(){super("wash")}async getWashDictLabelField(e={}){return this._get("washDictLabelField",null,null,e)}async getWashEdhrAndOfInst(e={}){return this._get("washEdhrAndOfInst",null,null,e)}}class Ml extends a{constructor(){super("webpage")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCancelOccupyWebPage(e,t={}){return this._post("cancelOccupyWebPage",e,null,t)}async postCopyById(e,t={}){return this._post("copyById",e,null,t)}async postGetWebPageOccupyMsg(e,t={}){return this._post("getWebPageOccupyMsg",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async postLockWebPage(e,t={}){return this._post("lockWebPage",e,null,t)}async postOccupyWebPage(e,t={}){return this._post("occupyWebPage",e,null,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async postUnLockWebPage(e,t={}){return this._post("unLockWebPage",e,null,t)}async putUpdateDesignerJson(e,t={}){return this._put("updateDesignerJson",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}let wl=class extends a{constructor(){super("api")}async postApp(e,t,s={}){return this._post("app",t,e,s)}async getApp(e,t={}){return this._get("app",null,e,t)}async deleteApp(e,t={}){return this._delete("app",null,e,t)}async postAuditLog(e,t={}){return this._post("audit-log",e,null,t)}async getAuditLog(e,t={}){return this._get("audit-log",null,e,t)}async postEdhr(e,t={}){return this._post("edhr",e,null,t)}async getIe(e,t={}){return this._get("ie",null,e,t)}async getModelComprehensive(e,t={}){return this._get("model-comprehensive",null,e,t)}async postModelComprehensive(e,t={}){return this._post("model-comprehensive",null,e,t)}async putModelComprehensive(e,t={}){return this._put("model-comprehensive",null,e,t)}async deleteModelComprehensive(e,t={}){return this._delete("model-comprehensive",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}},ml=class{constructor(){r(this,"appBranch",new hs);r(this,"appGlobalSettings",new ys);r(this,"appGrantedUser",new _s);r(this,"appOrg",new fs);r(this,"appPublishLog",new Ss);r(this,"appState",new Is);r(this,"appUser",new vs);r(this,"approvalLog",new As);r(this,"auditLog",new Ls);r(this,"basicConfig",new Ts);r(this,"bizEvent",new Rs);r(this,"bizProcessDefinition",new bs);r(this,"bizProcessDefinitionVersion",new Os);r(this,"bizServiceCrud",new Es);r(this,"bizService",new Ds);r(this,"bom",new Ns);r(this,"category",new Ms);r(this,"categoryRelation",new ws);r(this,"codeTs",new ms);r(this,"commitLog",new Ps);r(this,"dataModel",new xs);r(this,"designerCommon",new Us);r(this,"designerLock",new Bs);r(this,"designerOperateLog",new Cs);r(this,"devops",new ks);r(this,"docOutline",new Gs);r(this,"document",new Vs);r(this,"edhrInstance",new Ks);r(this,"edhrInstanceRelation",new Xs);r(this,"edhrTmpl",new Ws);r(this,"eleSearch",new Hs);r(this,"enumModel",new $s);r(this,"enumModelField",new js);r(this,"event",new zs);r(this,"eventLog",new qs);r(this,"excelTmpl",new Js);r(this,"excel",new Qs);r(this,"fieldMeta",new Fs);r(this,"field",new Zs);r(this,"fileResource",new Ys);r(this,"file",new er);r(this,"formRelate",new tr);r(this,"frontOperateLog",new nr);r(this,"globalMethod",new sr);r(this,"i18NInfo",new rr);r(this,"job",new lr);r(this,"jobLog",new ar);r(this,"jsEngine",new ur);r(this,"label",new ir);r(this,"labelLog",new cr);r(this,"medPro",new or);r(this,"menuConfig",new gr);r(this,"mergeLog",new pr);r(this,"messageRecord",new dr);r(this,"messageSetting",new hr);r(this,"messageTmpl",new yr);r(this,"mobileHomepage",new _r);r(this,"mobilePage",new fr);r(this,"modelComprehensive",new Sr);r(this,"modelData",new Ir);r(this,"modelMeta",new vr);r(this,"modelMethod",new Ar);r(this,"model",new Lr);r(this,"onlineFormChangeHistory",new Tr);r(this,"onlineFormInstance",new Rr);r(this,"onlineFormLog",new br);r(this,"onlineFormTmplLog",new Or);r(this,"onlineFormTmpl",new Er);r(this,"onlineForm",new Dr);r(this,"online",new Nr);r(this,"openapi",new Mr);r(this,"pageDesignerLog",new wr);r(this,"permission",new mr);r(this,"pmProcessDefinition",new Pr);r(this,"pmProcessDefinitionVersion",new xr);r(this,"pmProcessEngine",new Ur);r(this,"printDesigner",new Br);r(this,"printLog",new Cr);r(this,"print",new kr);r(this,"process",new Gr);r(this,"processApprovalLog",new Vr);r(this,"processApproveUser",new Kr);r(this,"processDefinition",new Xr);r(this,"processDefinitionVersion",new Wr);r(this,"processEngine",new Hr);r(this,"processEvent",new $r);r(this,"processGraph",new jr);r(this,"processInstance",new zr);r(this,"processMessageUser",new qr);r(this,"processNodeDefinition",new Jr);r(this,"processPathUser",new Qr);r(this,"processPath",new Fr);r(this,"processTaskDone",new Zr);r(this,"processTaskTodo",new Yr);r(this,"processVersion",new el);r(this,"processTest",new tl);r(this,"productRelease",new nl);r(this,"publishLog",new sl);r(this,"regexp",new rl);r(this,"role",new ll);r(this,"rolePermission",new al);r(this,"script",new ul);r(this,"scriptVersion",new il);r(this,"scriptVersionLog",new cl);r(this,"serviceOrchestration",new ol);r(this,"serviceOrchestrationVersion",new gl);r(this,"serviceOrchestrationVersionLog",new pl);r(this,"signHistory",new dl);r(this,"signature",new hl);r(this,"sqlViewModel",new yl);r(this,"sqlView",new _l);r(this,"stash",new fl);r(this,"subModelProcess",new Sl);r(this,"sysConfig",new Il);r(this,"systemVar",new vl);r(this,"traceLog",new Al);r(this,"traceLogDetails",new Ll);r(this,"traceMainline",new Tl);r(this,"traceMainlineExt",new Rl);r(this,"traceSetting",new bl);r(this,"userGroup",new Ol);r(this,"userGroupRelation",new El);r(this,"viewModel",new Dl);r(this,"wash",new Nl);r(this,"webpage",new Ml);r(this,"api",new wl)}};class i extends pn{constructor(e){super(R.join("/gct-platform/api",e))}}class Pl extends i{constructor(){super("apk")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetActiveApp(e={}){return this._get("getActiveApp",null,null,e)}async getGetIp(e={}){return this._get("getIp",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async postUpload(e={}){return this._post("upload",null,null,e)}async putId(e,t={}){return this._put("",null,e,t)}}class xl extends i{constructor(){super("app")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async putAppCleanUp(e={}){return this._put("appCleanUp",null,null,e)}async putAppRestore(e={}){return this._put("appRestore",null,null,e)}async getCheckAppMaintainerInTenant(e={}){return this._get("checkAppMaintainerInTenant",null,null,e)}async postCreateBranch(e,t={}){return this._post("createBranch",e,null,t)}async putDisable(e={}){return this._put("disable",null,null,e)}async putEnable(e={}){return this._put("enable",null,null,e)}async getFieldMeta(e,t={}){return this._get("field-meta",null,e,t)}async getGetAppCount(e={}){return this._get("getAppCount",null,null,e)}async getGetCurrentBranch(e={}){return this._get("getCurrentBranch",null,null,e)}async getGetLatestCommit(e,t={}){return this._get("getLatestCommit",null,e,t)}async getGetMobileDbFileUrl(e={}){return this._get("getMobileDbFileUrl",null,null,e)}async postImportVersion(e,t={}){return this._post("importVersion",e,null,t)}async getImportVersionPreview(e,t={}){return this._get("importVersionPreview",null,e,t)}async getInfo(e={}){return this._get("info",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async getListBranch(e={}){return this._get("listBranch",null,null,e)}async getMerge(e,t={}){return this._get("merge",null,e,t)}async postMerge(e,t={}){return this._post("merge",e,null,t)}async getMergePreview(e,t={}){return this._get("mergePreview",null,e,t)}async getModelMeta(e,t={}){return this._get("model-meta",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getPublishLogInfo(e,t={}){return this._get("publishLogInfo",null,e,t)}async getPublishLogPageList(e,t={}){return this._get("publishLogPageList",null,e,t)}async postRevert(e,t={}){return this._post("revert",e,null,t)}async postSwitchBranch(e,t={}){return this._post("switchBranch",e,null,t)}async getTenant(e,t={}){return this._get("tenant",null,e,t)}async postUpload(e={}){return this._post("upload",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ul extends i{constructor(){super("app-member")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putTransfer(e={}){return this._put("transfer",null,null,e)}async putId(e,t={}){return this._put("",null,e,t)}}class Bl extends i{constructor(){super("app-setting")}async delete(e,t={}){return this._delete("",null,e,t)}async getCheckAppUserAdmin(e,t={}){return this._get("checkAppUserAdmin",null,e,t)}async getCheckAppUserVisibility(e,t={}){return this._get("checkAppUserVisibility",null,e,t)}async deleteDeveloper(e,t={}){return this._delete("developer",null,e,t)}async postDeveloper(e={}){return this._post("developer",null,null,e)}async getInfoByAppId(e,t={}){return this._get("infoByAppId",null,e,t)}async postSaveSetting(e,t={}){return this._post("saveSetting",e,null,t)}async postSaveSettingBatch(e={}){return this._post("saveSettingBatch",null,null,e)}}class Cl extends i{constructor(){super("assets")}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async postMove(e={}){return this._post("move",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async postUpload(e={}){return this._post("upload",null,null,e)}}class kl extends i{constructor(){super("audit-log")}async postExport(e,t={}){return this._post("export",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getModules(e={}){return this._get("modules",null,null,e)}async getOperateTypes(e={}){return this._get("operateTypes",null,null,e)}async getOperators(e={}){return this._get("operators",null,null,e)}async postPage(e,t={}){return this._post("page",e,null,t)}}class Gl extends i{constructor(){super("category")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Vl extends i{constructor(){super("data-source")}async post(e,t={}){return this._post("",e,null,t)}async put(e,t={}){return this._put("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async putEnabled(e,t={}){return this._put("enabled",e,null,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async postQueryData(e,t={}){return this._post("queryData",null,e,t)}async postSql(e,t={}){return this._post("sql",e,null,t)}async postTestConnect(e,t={}){return this._post("testConnect",e,null,t)}}class Kl extends i{constructor(){super("datasource-devops")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async postList(e,t={}){return this._post("list",e,null,t)}async postPage(e,t={}){return this._post("page",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Xl extends i{constructor(){super("datasource-move")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getMoveData(e,t={}){return this._get("moveData",null,e,t)}async getPage(e,t={}){return this._get("page",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Wl extends i{constructor(){super("datasource-move-data")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Hl extends i{constructor(){super("datasource-move-detail")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class $l extends i{constructor(){super("external-message")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class jl extends i{constructor(){super("file")}async postUpload(e,t={}){return this._post("upload",null,e,t)}}class zl extends i{constructor(){super("i18n-config")}async getList(e,t={}){return this._get("list",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ql extends i{constructor(){super("i18n-info")}async delete(e,t={}){return this._delete("",null,e,t)}async postExternal(e={}){return this._post("external",null,null,e)}async getLang(e,t={}){return this._get("lang",null,e,t)}async postLang(e,t={}){return this._post("lang",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putKey(e,t={}){return this._put("{key}",e,null,t)}}class Jl extends i{constructor(){super("internal-message")}async post(e,t={}){return this._post("",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putRead(e={}){return this._put("read",null,null,e)}async getUnread(e={}){return this._get("unread",null,null,e)}}class Ql extends i{constructor(){super("invoke-log")}async getExport(e,t={}){return this._get("export",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}}class Fl extends i{constructor(){super("ldap")}async postUpload(e={}){return this._post("upload",null,null,e)}}class Zl extends i{constructor(){super("license-unbind-log")}async post(e,t={}){return this._post("",e,null,t)}}class Yl extends i{constructor(){super("license")}async getActivate(e,t={}){return this._get("activate",null,e,t)}async postActivates(e={}){return this._post("activates",null,null,e)}async postActivatesOffline(e,t={}){return this._post("activatesOffline",null,e,t)}async getCheckLicense(e={}){return this._get("checkLicense",null,null,e)}async getClients(e,t={}){return this._get("clients",null,e,t)}async getGetAppBasicInfo(e,t={}){return this._get("getAppBasicInfo",null,e,t)}async getGetExpireMsg(e,t={}){return this._get("getExpireMsg",null,e,t)}async getGetUsers(e,t={}){return this._get("getUsers",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getUnbind(e,t={}){return this._get("unbind",null,e,t)}}class ea extends i{constructor(){super("login-log")}async getPage(e,t={}){return this._get("page",null,e,t)}}class ta extends i{constructor(){super("login")}async postCheckApp(e,t={}){return this._post("checkApp",e,null,t)}async postSendMsg(e,t={}){return this._post("sendMsg",e,null,t)}async postSign(e,t={}){return this._post("sign",e,null,t)}async getSignOut(e={}){return this._get("signOut",null,null,e)}async getUserAppAuth(e,t={}){return this._get("userAppAuth",null,e,t)}}class na extends i{constructor(){super("manager")}async getPlat(e,t={}){return this._get("plat",null,e,t)}async getTenant(e,t={}){return this._get("tenant",null,e,t)}}class sa extends i{constructor(){super("message-setting")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetTypeCount(e={}){return this._get("getTypeCount",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async postMqtt(e,t={}){return this._post("mqtt",e,null,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async postSendEmailMessage(e,t={}){return this._post("sendEmailMessage",e,null,t)}async postSendMessage(e,t={}){return this._post("sendMessage",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ra extends i{constructor(){super("nav-menu")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetSelected(e={}){return this._get("getSelected",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async postSelect(e,t={}){return this._post("select",e,null,t)}async putUpdateDesignerJson(e,t={}){return this._put("updateDesignerJson",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class la extends i{constructor(){super("nav-page")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putUpdateDesignerJson(e,t={}){return this._put("updateDesignerJson",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class aa extends i{constructor(){super("openapi-group")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ua extends i{constructor(){super("openapi-key-grant")}async post(e={}){return this._post("",null,null,e)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getOpenapi(e={}){return this._get("openapi",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ia extends i{constructor(){super("org")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e={}){return this._get("info",null,null,e)}async postInputCheck(e,t={}){return this._post("inputCheck",e,null,t)}async getList(e={}){return this._get("list",null,null,e)}async postOrgHavePersonCheck(e,t={}){return this._post("orgHavePersonCheck",e,null,t)}async postTransferAndDelete(e,t={}){return this._post("transferAndDelete",e,null,t)}async postUser(e,t={}){return this._post("user",e,null,t)}async getUser(e,t={}){return this._get("user",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ca extends i{constructor(){super("org-user-picker")}async getManagement(e,t={}){return this._get("management",null,e,t)}async getTenant(e,t={}){return this._get("tenant",null,e,t)}}class oa extends i{constructor(){super("permission")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ga extends i{constructor(){super("plat")}async postBase(e,t={}){return this._post("base",e,null,t)}async postDingtalk(e,t={}){return this._post("dingtalk",e,null,t)}async postEmail(e,t={}){return this._post("email",e,null,t)}async postFeishu(e,t={}){return this._post("feishu",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async postLogin(e,t={}){return this._post("login",e,null,t)}async postOrg(e,t={}){return this._post("org",e,null,t)}async postSecurity(e,t={}){return this._post("security",e,null,t)}async postTheme(e,t={}){return this._post("theme",e,null,t)}async postUserRole(e,t={}){return this._post("user-role",e,null,t)}async deleteUserRole(e,t={}){return this._delete("user-role",null,e,t)}async getUser(e={}){return this._get("user",null,null,e)}async getVersion(e={}){return this._get("version",null,null,e)}async postWatermark(e,t={}){return this._post("watermark",e,null,t)}async postWxwork(e,t={}){return this._post("wxwork",e,null,t)}}class pa extends i{constructor(){super("plugin")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async postUploadZip(e={}){return this._post("uploadZip",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class da extends i{constructor(){super("plugin-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ha extends i{constructor(){super("pm-process-delegate")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ya extends i{constructor(){super("pm-process-delegate-detail")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class _a extends i{constructor(){super("pm-process-instance")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class fa extends i{constructor(){super("pm-task-done")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Sa extends i{constructor(){super("pm-task-todo")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ia extends i{constructor(){super("print-log")}async post(e,t={}){return this._post("",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}}class va extends i{constructor(){super("print-resource")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetIpAddressStatus(e,t={}){return this._get("getIpAddressStatus",null,e,t)}async getGetPrintCount(e={}){return this._get("getPrintCount",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getListByMacAddress(e,t={}){return this._get("listByMacAddress",null,e,t)}async postPrintTest(e={}){return this._post("printTest",null,null,e)}async postSendPrintData(e,t={}){return this._post("sendPrintData",e,null,t)}async putUpdateRemark(e,t={}){return this._put("updateRemark",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Aa extends i{constructor(){super("regexp")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class La extends i{constructor(){super("released")}async deleteApp(e,t={}){return this._delete("app",null,e,t)}async putApp(e={}){return this._put("app",null,null,e)}async getApp(e,t={}){return this._get("app",null,e,t)}}class Ta extends i{constructor(){super("role-permission")}async getPlat(e,t={}){return this._get("plat",null,e,t)}async postPlat(e,t={}){return this._post("plat",e,null,t)}async getTenant(e,t={}){return this._get("tenant",null,e,t)}async postTenant(e,t={}){return this._post("tenant",e,null,t)}}class Ra extends i{constructor(){super("role")}async getList(e={}){return this._get("list",null,null,e)}async postPlat(e,t={}){return this._post("plat",e,null,t)}async deletePlat(e,t={}){return this._delete("plat",null,e,t)}async getPlat(e,t={}){return this._get("plat",null,e,t)}async putPlat(e={}){return this._put("plat",null,null,e)}async postTenant(e,t={}){return this._post("tenant",e,null,t)}async deleteTenant(e,t={}){return this._delete("tenant",null,e,t)}async getTenant(e,t={}){return this._get("tenant",null,e,t)}async putTenant(e={}){return this._put("tenant",null,null,e)}}class ba extends i{constructor(){super("seat-message")}async getClose(e={}){return this._get("close",null,null,e)}}class Oa extends i{constructor(){super("seat")}async postAuth(e={}){return this._post("auth",null,null,e)}async getListAuthed(e,t={}){return this._get("listAuthed",null,e,t)}async getListNotAuth(e,t={}){return this._get("listNotAuth",null,e,t)}async postRemoveAuth(e,t={}){return this._post("removeAuth",null,e,t)}async getTotalinfos(e={}){return this._get("totalinfos",null,null,e)}}class Ea extends i{constructor(){super("shortcut")}async postMenu(e={}){return this._post("menu",null,null,e)}async deleteMenu(e,t={}){return this._delete("menu",null,e,t)}async getMenu(e,t={}){return this._get("menu",null,e,t)}async putMenu(e,t={}){return this._put("menu",e,null,t)}}class Da extends i{constructor(){super("sms")}async postGetSignsAndTemplates(e,t={}){return this._post("getSignsAndTemplates",e,null,t)}async postSendMsg(e,t={}){return this._post("sendMsg",e,null,t)}}class Na extends i{constructor(){super("started-process")}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}}class Ma extends i{constructor(){super("task-delegate")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCancel(e={}){return this._post("cancel",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class wa extends i{constructor(){super("task-done")}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}}class ma extends i{constructor(){super("task-todo")}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}}class Pa extends i{constructor(){super("tenant-developer")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postRemoveAndHandover(e,t={}){return this._post("RemoveAndHandover",e,null,t)}async getGetUserMaintainerApp(e,t={}){return this._get("getUserMaintainerApp",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class xa extends i{constructor(){super("tenant")}async putDisable(e={}){return this._put("disable",null,null,e)}async putEnable(e={}){return this._put("enable",null,null,e)}async getGetTenantIdByAppId(e,t={}){return this._get("getTenantIdByAppId",null,e,t)}async getGetTencentByDomain(e,t={}){return this._get("getTencentByDomain",null,e,t)}async getInfo(e={}){return this._get("info",null,null,e)}async getList(e,t={}){return this._get("list",null,e,t)}async postManagement(e,t={}){return this._post("management",e,null,t)}async deleteManagement(e,t={}){return this._delete("management",null,e,t)}async getManagement(e,t={}){return this._get("management",null,e,t)}async putManagement(e,t={}){return this._put("management",e,null,t)}async putUpdateDomain(e,t={}){return this._put("updateDomain",e,null,t)}async postUserRole(e,t={}){return this._post("user-role",e,null,t)}async deleteUserRole(e,t={}){return this._delete("user-role",null,e,t)}async getUser(e={}){return this._get("user",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ua extends i{constructor(){super("user")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e={}){return this._get("info",null,null,e)}async getInfoByIds(e,t={}){return this._get("infoByIds",null,e,t)}async getLast(e={}){return this._get("last",null,null,e)}async getList(e,t={}){return this._get("list",null,e,t)}async getListByTenantId(e,t={}){return this._get("listByTenantId",null,e,t)}async postOrg(e,t={}){return this._post("org",e,null,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async postPlat(e,t={}){return this._post("plat",e,null,t)}async postReset(e,t={}){return this._post("reset",e,null,t)}async postSettings(e,t={}){return this._post("settings",e,null,t)}async postTenant(e,t={}){return this._post("tenant",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ba extends i{constructor(){super("user-extra")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ca extends i{constructor(){super("user-info-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ka extends i{constructor(){super("user-password-history")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ga extends i{constructor(){super("workbench-component")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Va extends i{constructor(){super("workbench-component-relation")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putUpdatePositionJson(e,t={}){return this._put("updatePositionJson",e,null,t)}async putWorkbenchComponentActive(e,t={}){return this._put("workbenchComponentActive",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ka extends i{constructor(){super("api")}async getApaasUtils(e,t={}){return this._get("apaas-utils",null,e,t)}async postAppGrantedUser(e,t,s={}){return this._post("app-granted-user",t,e,s)}async getAppGrantedUser(e,t={}){return this._get("app-granted-user",null,e,t)}async getAppSetting(e,t={}){return this._get("app-setting",null,e,t)}async getApp(e,t={}){return this._get("app",null,e,t)}async postApp(e,t={}){return this._post("app",e,null,t)}async deleteApp(e,t={}){return this._delete("app",null,e,t)}async putApp(e,t={}){return this._put("app",e,null,t)}async getDataSource(e,t={}){return this._get("data-source",null,e,t)}async postDataSource(e,t,s={}){return this._post("data-source",t,e,s)}async getMsg(e,t={}){return this._get("msg",null,e,t)}async postMsg(e,t={}){return this._post("msg",e,null,t)}async postOpenapiGroup(e,t={}){return this._post("openapi-group",e,null,t)}async putOpenapiGroup(e,t={}){return this._put("openapi-group",null,e,t)}async putOpenapiKeyGrant(e,t={}){return this._put("openapi-key-grant",null,e,t)}async getOrgUserPicker(e,t={}){return this._get("org-user-picker",null,e,t)}async postOrgUserPicker(e,t={}){return this._post("org-user-picker",e,null,t)}async postOrg(e={}){return this._post("org",null,null,e)}async getOrg(e={}){return this._get("org",null,null,e)}async postPrintLog(e,t={}){return this._post("print-log",e,null,t)}async getPrint(e,t={}){return this._get("print",null,e,t)}async postPrint(e,t={}){return this._post("print",e,null,t)}async deleteRegexp(e,t={}){return this._delete("regexp",null,e,t)}async getRegexp(e,t={}){return this._get("regexp",null,e,t)}async postRegexp(e,t={}){return this._post("regexp",e,null,t)}async putRegexp(e,t={}){return this._put("regexp",e,null,t)}async getTenant(e,t={}){return this._get("tenant",null,e,t)}async postTenant(e,t={}){return this._post("tenant",e,null,t)}async getUser(e,t={}){return this._get("user",null,e,t)}async postUser(e,t={}){return this._post("user",null,e,t)}}class Xa{constructor(){r(this,"apk",new Pl);r(this,"app",new xl);r(this,"appMember",new Ul);r(this,"appSetting",new Bl);r(this,"assets",new Cl);r(this,"auditLog",new kl);r(this,"category",new Gl);r(this,"dataSource",new Vl);r(this,"datasourceDevops",new Kl);r(this,"datasourceMove",new Xl);r(this,"datasourceMoveData",new Wl);r(this,"datasourceMoveDetail",new Hl);r(this,"externalMessage",new $l);r(this,"file",new jl);r(this,"i18NConfig",new zl);r(this,"i18NInfo",new ql);r(this,"internalMessage",new Jl);r(this,"invokeLog",new Ql);r(this,"ldap",new Fl);r(this,"licenseUnbindLog",new Zl);r(this,"license",new Yl);r(this,"loginLog",new ea);r(this,"login",new ta);r(this,"manager",new na);r(this,"messageSetting",new sa);r(this,"navMenu",new ra);r(this,"navPage",new la);r(this,"openapiGroup",new aa);r(this,"openapiKeyGrant",new ua);r(this,"org",new ia);r(this,"orgUserPicker",new ca);r(this,"permission",new oa);r(this,"plat",new ga);r(this,"plugin",new pa);r(this,"pluginVersion",new da);r(this,"pmProcessDelegate",new ha);r(this,"pmProcessDelegateDetail",new ya);r(this,"pmProcessInstance",new _a);r(this,"pmTaskDone",new fa);r(this,"pmTaskTodo",new Sa);r(this,"printLog",new Ia);r(this,"printResource",new va);r(this,"regexp",new Aa);r(this,"released",new La);r(this,"rolePermission",new Ta);r(this,"role",new Ra);r(this,"seatMessage",new ba);r(this,"seat",new Oa);r(this,"shortcut",new Ea);r(this,"sms",new Da);r(this,"startedProcess",new Na);r(this,"taskDelegate",new Ma);r(this,"taskDone",new wa);r(this,"taskTodo",new ma);r(this,"tenantDeveloper",new Pa);r(this,"tenant",new xa);r(this,"user",new Ua);r(this,"userExtra",new Ba);r(this,"userInfoLog",new Ca);r(this,"userPasswordHistory",new ka);r(this,"workbenchComponent",new Ga);r(this,"workbenchComponentRelation",new Va);r(this,"api",new Ka)}}class dn{constructor(){r(this,"i18n",Sn.createI18n({}));r(this,"storeUtil",new rn);r(this,"store",this.storeUtil.store);r(this,"message");r(this,"register",{designer:{mobile:new m,web:new m},render:{mobile:new P,web:new P}});r(this,"api",{apaas:new ml,platform:new Xa})}t(e,t){return this.i18n.global.t(e,t)}}function Wa(n){return new gn(n)}function hn(){if(window._gct){console.warn("核心包已安装,请勿重复安装!");return}console.info("核心包安装成功!"),window._gct=new dn}exports.AGLINE_ENUMS=kt;exports.APP_DARK_MODE_KEY_=Hn;exports.APP_LOCAL_CACHE_KEY=$n;exports.APP_SESSION_CACHE_KEY=jn;exports.ASSIGNMENTSTRATEGY_ENUM=Ce;exports.AggTypes=ne;exports.AppPublishStateEnum=Mt;exports.BasicAction=wt;exports.BindCmpStyleEnum=Et;exports.BindCmpStyleTypeEnum=Dt;exports.BizServiceEnum=$t;exports.BorderStyle=Ie;exports.BuiltinType=Ke;exports.ButtonColorTheme=nt;exports.ButtonColorType=tt;exports.ButtonGroupType=En;exports.ButtonOpeEnum=Gt;exports.ButtonSize=rt;exports.ButtonStyle=st;exports.ButtonType=at;exports.ButtonTypeGroup=lt;exports.ButtonType_vant=ut;exports.COLUMNS_TYPE=we;exports.CURRENCY_ENUM=He;exports.CURRENCY_LANG_ENUM=ze;exports.CacheTypeEnum=Bt;exports.CategoryTypeEnum=Ve;exports.Ch_BindCmpStyleEnum=Dn;exports.ContentEnum=X;exports.ContentTypeEnum=B;exports.CoreConst=N;exports.CreateType=Z;exports.CustomAction=mt;exports.DESIGNER_SESSION_CACHE_KEY=zn;exports.DatasourceTypeEnum=ht;exports.DateRangeEnums=Xe;exports.DefaultActions=mn;exports.Dependency_ENUM=ke;exports.DesignerRegister=m;exports.DisplayEnums=et;exports.DisplayType=De;exports.EntityModelCategoryEnum=pe;exports.EntityModelTypeEnum=de;exports.ErrorTypeEnum=Xt;exports.EventCategory=Le;exports.ExamineAndApproveStateEnum=nn;exports.ExceptionEnum=Kt;exports.FIELD_TYPE=d;exports.FIELD_TYPE_BASIC=J;exports.FIELD_TYPE_CATEGORY=q;exports.FIELD_TYPE_LOGIC=Q;exports.FIELD_TYPE_TRACE=F;exports.FieldDefaultValueTypeEnum=he;exports.FieldIconMap=bn;exports.FieldSysVarDefaultValueEnum=ye;exports.FieldTypeToJs=Rn;exports.FormComponents=St;exports.GENDER_TYPE=ce;exports.GLOBAL_TYPE=Me;exports.GLOBAL_VAR_TYPE=Ne;exports.GctGlobal=dn;exports.GlobalPiniaState=sn;exports.GlobalStoreUtil=rn;exports.HttpUtil=on;exports.INNER_EVENT=me;exports.KeyMode=Ze;exports.LOCALE_KEY=Bn;exports.LOCALE_LIST_KEY=Cn;exports.LOCAL_I18N_TRANSLATE=kn;exports.LOCK_INFO_KEY=Xn;exports.ListTreeSearchTypeEnum=dt;exports.MULTIPLE_TABS_KEY=Wn;exports.MaterialEnum=te;exports.MenuModeEnum=qt;exports.MenuSplitTyeEnum=Jt;exports.MenuType=Y;exports.MenuTypeEnum=jt;exports.MessageType=ae;exports.MixSidebarTriggerEnum=Ft;exports.Namespace=gn;exports.NodesConfigTypeEnum=se;exports.OpenMode=ee;exports.PLUGIN_BASE_URL=un;exports.PROJ_CFG_KEY=Kn;exports.PageEnum=Zt;exports.PanelEnum=fe;exports.PermissionModeEnum=j;exports.PersonalCenterType=ie;exports.Platform=E;exports.PlatformSettingActions=Pn;exports.PluginModeEnum=O;exports.PluginPgkUtil=U;exports.PluginStaticResource=ds;exports.Postion=Se;exports.PrintModeEnums=Qe;exports.ProcessStatusEnum=tn;exports.ProgressTypeEnum=Ee;exports.ProjectName=A;exports.PropGroup=Te;exports.ROLES_KEY=Vn;exports.RdoButtonOpeEnum=Vt;exports.RenderRegister=P;exports.RequestEnum=Ht;exports.ResetRuleType=_t;exports.ResultEnum=Wt;exports.RoleEnum=Yt;exports.RouterTransitionEnum=z;exports.RowSelectionTypeEnums=qe;exports.SCOPE=ft;exports.SEARCH_SEVICE=Ct;exports.SHOW_FIELDTYPES=On;exports.SIDE_BAR_MINI_WIDTH=Ln;exports.SIDE_BAR_SHOW_TIT_MINI_WIDTH=Tn;exports.STYLE_NAMESPACE_TAG=an;exports.SUB_TABLE_EDIT_MODE=Pe;exports.SUB_TABLE_OPE_EVENT_TYPE=Ue;exports.SUB_TABLE_OPE_EVENT_TYPE_INLINE=xe;exports.SearchComponents=It;exports.SelectPickerEnums=We;exports.SessionTimeoutProcessingEnum=$;exports.SettingButtonPositionEnum=H;exports.SignatureTypeEnum=yt;exports.SizeEnum=en;exports.StatisticalMethodEnums=Je;exports.StyleGroup=Re;exports.TENANT_KEY=xn;exports.TIMETYPE_ENUM=$e;exports.TIMETYPE_LANG_ENUM=je;exports.TIMEZONE_KEY=Ut;exports.TODO_TYPE=oe;exports.TOKEN_KEY=Un;exports.TableEditingMethodEnum=gt;exports.TableSearchTypeEnum=ct;exports.TableTypeEnum=ot;exports.TagTypeEnum=Oe;exports.TextAlign=ve;exports.TextDecoration=Ae;exports.ThemeEnum=W;exports.ToolkitEnum=Ge;exports.TopMenuAlignEnum=Qt;exports.TransactionMode=Ye;exports.TriggerEnum=zt;exports.USER_INFO_KEY=Gn;exports.UniqueConstraintType=le;exports.UserServiceType=ge;exports.VERIFICATIONCONDITIONS_TYPE=Be;exports.WidgetInScopeEnum=pt;exports.WorkbenchType=ue;exports.bindCmpStyleMap=Mn;exports.buttonShowType=Nt;exports.ch_ProcessStatusMap=Qn;exports.controlConfigEnum=At;exports.deepMerge=x;exports.default=hn;exports.fixedAlignENUM=Tt;exports.getToken=cn;exports.install=hn;exports.notSingleArr=qn;exports.openWindowEnums=Fe;exports.operateSysEnums=it;exports.presetColor=Jn;exports.screenEnum=xt;exports.screenMap=L;exports.scriptTypeEnum=_e;exports.searchListByFieldType=wn;exports.selectionTypeEnums=re;exports.setToken=rs;exports.sizeEnum=Pt;exports.sortTypeEnum=Ot;exports.statisticalMethodEnum=Lt;exports.tableColumnTypeEnum=Rt;exports.tableColumnWidthEnum=vt;exports.tabsTypeENUM=bt;exports.tagEnum=be;exports.transformBindCmp2CmpType=Nn;exports.useNamespace=Wa;
1
+ "use strict";var Fn=Object.defineProperty;var Wn=(n,e,t)=>e in n?Fn(n,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):n[e]=t;var r=(n,e,t)=>Wn(n,typeof e!="symbol"?e+"":e,t);Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const $n=require("vue-i18n"),k=require("pinia"),Y=require("axios"),jn=require("qs"),m=require("lodash-es"),I=require("vue");function zn(n){const e=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(n){for(const t in n)if(t!=="default"){const s=Object.getOwnPropertyDescriptor(n,t);Object.defineProperty(e,t,s.get?s:{enumerable:!0,get:()=>n[t]})}}return e.default=n,Object.freeze(e)}const qn=zn(jn),Jn=48,Qn=80;var ee=(n=>(n.FULL="full",n.FIXED="fixed",n))(ee||{}),te=(n=>(n.DARK="dark",n.LIGHT="light",n))(te||{}),ne=(n=>(n.AUTO="auto",n.HEADER="header",n.FIXED="fixed",n))(ne||{}),se=(n=>(n[n.ROUTE_JUMP=0]="ROUTE_JUMP",n[n.PAGE_COVERAGE=1]="PAGE_COVERAGE",n))(se||{}),re=(n=>(n.ROLE="ROLE",n.BACK="BACK",n.ROUTE_MAPPING="ROUTE_MAPPING",n.PLATFORM_ROLE="PLATFORM_ROLE",n))(re||{}),le=(n=>(n.ZOOM_FADE="zoom-fade",n.ZOOM_OUT="zoom-out",n.FADE_SIDE="fade-slide",n.FADE="fade",n.FADE_BOTTOM="fade-bottom",n.FADE_SCALE="fade-scale",n))(le||{}),R=(n=>(n.PORTAL="portal",n.BACKEND_MANAGEMENT="backend-management",n.DEVELOPER_CENTER="developer-center",n.TENANT_CENTER="tenant-center",n.APP_DESIGNER="app-designer",n.PAGE_DESIGNER="page-designer",n.WEB_RENDER="web-render",n.MOBILE_RENDER="mobile-render",n))(R||{}),ie=(n=>(n.ALL="field_type_all",n.BASIC="field_type_basic",n.LOGIC="field_type_logic",n.TRACE="field_type_trace",n))(ie||{}),d=(n=>(n.PRIMARY_KEY="primary_key",n.ASSOCIATED_PRIMARY_KEY="associated_primary_key",n.TEXT="text",n.LONG_TEXT="long_text",n.INTEGER="integer",n.LONG="long",n.DOUBLE="double",n.DECIMAL="decimal",n.BOOLEAN="boolean",n.DATE="date",n.TIME="time",n.DATE_TIME="date_time",n.IMAGE="image",n.ATTACHMENT="attachment",n.SERIAL="serial_number",n.MASTERSLAVE="master_slave",n.USER="user",n.USER_MULTI="user_multi",n.ORG="org",n.ORG_MULTI="org_multi",n.ENUM="enum",n.ENUM_MULTI="enum_multi",n.OPTION="option",n.OPTION_MULTI="option_multi",n.REF="ref",n.REF_MULTI="ref_multi",n.RDO_REF="rdo_ref",n.EXPRESSION="expression",n.EXPRESSION_CONDITION="expression_condition",n.AGG="agg",n.ESOP="esop",n.TRANSACTION="transaction",n.LABEL_TEMPLATE="label_template",n.LABEL_TEMPLATE_REF="label_template_ref",n.DOCUMENT_TEMPLATE="document_template",n.SERIALRULE="serial_number_rule",n.PRINTER="printer",n.MESSAGE_TMPL="message_tmpl",n.RANGE_USER="range_user",n.SIGNATURE="electronic_signature",n.ONLINE_FORM_TEMPLATE="online_form_tmpl",n.E_DHR_TEMPLATE="edhr_tmpl",n.ONLINE_FORM="online_form",n.DATA_TABLE_FORMULA="data_table_formula",n.READONLYCMP="readonlycmp",n.MATERIAL_NO="material_no",n.PRODUCT="product",n.DEVICE="device",n.Biz_Process="biz_process",n))(d||{}),ae=(n=>(n.TEXT="text",n.LONG_TEXT="long_text",n.INTEGER="integer",n.LONG="long",n.DOUBLE="double",n.DECIMAL="decimal",n.BOOLEAN="boolean",n.DATE="date",n.TIME="time",n.DATE_TIME="date_time",n))(ae||{}),ue=(n=>(n.IMAGE="image",n.ATTACHMENT="attachment",n.SERIAL="serial_number",n.MASTERSLAVE="master_slave",n.USER="user",n.USER_MULTI="user_multi",n.ORG="org",n.ORG_MULTI="org_multi",n.ENUM="enum",n.ENUM_MULTI="enum_multi",n.OPTION="option",n.OPTION_MULTI="option_multi",n.REF="ref",n.REF_MULTI="ref_multi",n.RDO_REF="rdo_ref",n.EXPRESSION="expression",n.EXPRESSION_CONDITION="expression_condition",n.AGG="agg",n.ESOP="esop",n.TRANSACTION="transaction",n.LABEL_TEMPLATE="label_template",n.LABEL_TEMPLATE_REF="label_template_ref",n.DOCUMENT_TEMPLATE="document_template",n.SERIALRULE="serial_number_rule",n.PRINTER="printer",n.MESSAGE_TMPL="message_tmpl",n.RANGE_USER="range_user",n.SIGNATURE="electronic_signature",n.ONLINE_FORM_TEMPLATE="online_form_tmpl",n.E_DHR_TEMPLATE="edhr_tmpl",n.ONLINE_FORM="online_form",n.Biz_Process="biz_process",n))(ue||{}),oe=(n=>(n.MATERIAL_NO="material_no",n.PRODUCT="product",n.DEVICE="device",n))(oe||{});const Zn={attachment:"string",boolean:"boolean",date:"string",date_time:"string",decimal:"number",double:"number",enum:"string",enum_multi:"string",image:"string",integer:"number",long:"number",long_text:"string",master_slave:"string",org:"string",org_multi:"string",rdo_ref:"string",ref:"string",ref_multi:"string",serial_number:"string",text:"string",time:"string",user:"string",user_multi:"string",expression:"string",expression_condition:"string",agg:"number",esop:"string",serial_number_rule:"string",label_template:"string",label_template_ref:"string",document_template:"string",transaction:"string",printer:"string",message_tmpl:"string",range_user:"string",primary_key:"string",associated_primary_key:"string",readonlycmp:"string",material_no:"string",product:"string",device:"string",option:"string",option_multi:"string",electronic_signature:"string",online_form_tmpl:"string",edhr_tmpl:"string",online_form:"string",data_table_formula:"string",biz_process:"string"};var ce=(n=>(n.SYSTEM="SYSTEM",n.USER_DEFINED="USER_DEFINED",n.BUILTIN="BUILTIN",n.CUSTOM="CUSTOM",n.PROCESS="PROCESS",n))(ce||{}),ge=(n=>(n.CATALOG="CATALOG",n.STANDARD="STANDARD",n.LINK="LINK",n))(ge||{}),pe=(n=>(n.PRESENT="PRESENT",n.IFRAME="IFRAME",n.NEW="NEW",n))(pe||{}),he=(n=>(n.MaterialFormField="formField",n.MaterialTableField="tableField",n.MaterialEmbedTableField="embedTableField",n.MaterialSubTableField="subTableField",n.MaterialSubTableModalField="subTableModalField",n.cardListFormField="cardList",n.MaterialTableSelectField="tableSelectField",n.DescriptionsFormField="descriptions",n))(he||{});const Yn={primary_key:"icon-id",text:"icon-wenben1",long_text:"icon-changwenben",integer:"icon-zhengshu",long:"icon-changzhengshu",decimal:"icon-jingduxiaoshu1",double:"icon-xiaoshu",boolean:"icon-buer",date:"icon-riqi1",time:"icon-shijian1",date_time:"icon-riqishijian",user:"icon-renyuanguanlian",org:"icon-bumenguanlian",user_multi:"icon-renyuanduoxuan",org_multi:"icon-bumenduoxuan",image:"icon-tupian1",attachment:"icon-fujian1",serial_number:"icon-xuliehao",master_slave:"icon-zhuziguanlian",enum:"icon-meijuguanlian",ref:"icon-moxingguanlian",rdo_ref:"icon-RDOmoxingguanlian",enum_multi:"icon-meijuguanlianduoxuan",option:"icon-meijuguanlian",option_multi:"icon-meijuguanlianduoxuan",ref_multi:"icon-moxingduoxuan",expression:"icon-gongshiziduan",expression_condition:"icon-gongshiziduan",agg:"icon-huizong",esop:"icon-E-SOP",transaction:"icon-ziduan1",serial_number_rule:"icon-ziduan1",printer:"icon-dayinanniu",message_tmpl:"icon-xiaoximoban",range_user:"icon-fanweirenyuan",label_template_ref:"icon-biaoqianmoban",document_template:"icon-danjumoban",electronic_signature:"icon-qianming1",online_form_tmpl:"icon-zaixianbiaodanmoban",edhr_tmpl:"icon-edhr",online_form:"icon-zaixianbiaodan",data_table_formula:"icon-gongshiziduan",readonlycmp:"icon-wenben1",tenant:"icon-id",associated_primary_key:"icon-id",material_no:"icon-field-material-no",product:"icon-field-product",device:"icon-field-device",biz_process:"icon-jichengzhongxin1"};var de=(n=>(n.COUNT="COUNT",n.SUM="SUM",n.MAX="MAX",n.MIN="MIN",n.AVG="AVG",n))(de||{}),ye=(n=>(n.SPEC="spec",n.SUB_WORKFLOW="sub_workflow",n))(ye||{}),_e=(n=>(n.None="none",n.SingleChoice="gct_radio",n.MultipleChoice="checkbox",n))(_e||{}),fe=(n=>(n.NONE="NONE",n.GLOBAL="GLOBAL",n.LEVEL="LEVEL",n.LOGIC="LOGIC",n))(fe||{}),Ie=(n=>(n.ALL="all",n.UNREAD="unread",n))(Ie||{}),ve=(n=>(n.TEST="myTestApp",n.QUICK="quickAccess",n.MY="myApp",n))(ve||{}),Se=(n=>(n.PROFILE="profile",n.GENDER="gender",n.ENTERPRISE="enterprise",n))(Se||{}),Ae=(n=>(n.FEMALE="female",n.MALE="male",n.PRIVARY="privary",n))(Ae||{}),Le=(n=>(n.TODO="todo",n.APPLICATION="application",n.DONE="done",n.DELEGATE="delegate",n))(Le||{});const es=[d.TEXT,d.LONG_TEXT,d.LONG,d.INTEGER,d.DECIMAL,d.DOUBLE,d.SERIAL];var me=(n=>(n.SCRIPT_SERVICE="SCRIPT_SERVICE",n.SQL_SERVICE="SQL_SERVICE",n.SO_SERVICE="SO_SERVICE",n.BUILTIN_SERVICE="SYS_BUILTIN",n))(me||{}),Te=(n=>(n.ENTITY="entity",n.DATA="data",n.VIEW="view",n))(Te||{}),Re=(n=>(n.BASE="BASE",n.NDO="NDO",n.RDO="RDO",n.TREE="TREE",n.DYNAMIC_FORM="DYNAMIC_FORM",n.WORKFLOW="WORKFLOW",n.TRANSACTION="TRANSACTION",n))(Re||{}),be=(n=>(n.NONE="NONE",n.FIXED="FIXED",n.SYS_VAR="SYS_VAR",n))(be||{}),Ee=(n=>(n.NULL="",n.SYS_DATE="SYS_DATE",n.SYS_TIME="SYS_TIME",n.SYS_DATE_TIME="SYS_DATE_TIME",n.CURRENT_USER="CURRENT_USER",n.CURRENT_ORG="CURRENT_ORG",n))(Ee||{}),Oe=(n=>(n.EVENT="event",n.BUSINESSSERVICE="businessService",n.TIMER="timer",n))(Oe||{}),De=(n=>(n.PAGE="page",n.HISTORY="history",n.GLOBAL="global",n.WIDGET="widget",n.CHANGE_DESIGN="changeDesign",n))(De||{}),Ne=(n=>(n.STATIC="static",n.RELATIVE="relative",n.ABSOLUTE="absolute",n.FIXED="fixed",n.STICKY="sticky",n))(Ne||{}),Me=(n=>(n.NONE="none",n.SOLID="solid",n.DOTTED="dotted",n.DASHED="dashed",n.DOUBLE="double",n))(Me||{}),we=(n=>(n.LEFT="left",n.CENTER="center",n.RIGHT="right",n.JUSTIFY="justify",n))(we||{}),xe=(n=>(n.LINETHROUGH="line-through",n.UNDERLINE="underline",n.NONE="none",n))(xe||{}),Pe=(n=>(n.INNER="inner",n.JS="js",n.LO="lo",n))(Pe||{}),Ce=(n=>(n.BASIC="basic",n.ADVANCED="advance",n.DISPLAY="display",n.LABEL="label",n.VUE3="vue3",n.FIELD="field",n.DATA="data",n.OTHER="other",n.LIST="list",n.Table="table",n.SUBMIT_RULE="submitRule",n.LISTDATA="listdata",n.SHOW="show",n.FIELD_CONFIG="fieldConfig",n.FORM_CONFIG="formConfig",n.FIELD_LAYOUT="FieldLayout",n.TABLESELECT_CONFIG="tableSelect",n.GENRADIO="genRadio",n.GENCHECKBOX="genCheckbox",n.GENSWITCH="genSwitch",n.OPTIONS="options",n.COLLAPSE="collapse",n.IFRAME="iframe",n.FILECOLLECT="fileCollect",n.CARDLIST="cardList",n.BUTTON="button",n.Button="Button",n.ButtonShow="ButtonShow",n.ButtonStyle="ButtonStyle",n.LISTBUTTON="listButton",n.MODAL="modal",n.MODALWIDTH="modalWidth",n.MODALHEIGHT="modalHeight",n.MODALTITLECONFIG="modalTitleConfig",n.SEARCH="search",n.QUERY="query",n.INPUT_CONFIG="inputConfig",n.DATALINKAGE="dataLinkage",n.PERMISSION="permission",n.DATASOURCE="dataSource",n.VALIDATERULE="validaterule",n.TEXT="text",n.GRID_CONFIG="gridConfig",n.COL_CONFIG="colConfig",n.COMPONENTDEPENDENCY="componentDependency",n.GENIMAGE="genImage",n.DATARANGE="dataRange",n.OPERATOR_CONFIG="operatorConfig",n.BUSINESS_CONFIG="businessConfig",n))(Ce||{}),Ue=(n=>(n.LAYOUT="layout",n.STYLE="style",n.BACKGROUND="background",n.MARGIN="margin",n.BORDER="border",n.HEADER="header",n))(Ue||{}),Be=(n=>(n.TAG="tag",n.PROGRESS="progress",n))(Be||{}),ke=(n=>(n.RADIUS="radius",n.LINEAR_RADIUS="linear_radius",n.BIG_RADIUS="big_radius",n.LINEAR_BIG_RADIUS="linear_big_radius",n.DASHED_RADIUS="dashed_radius",n.STATUS="status",n))(ke||{}),Ge=(n=>(n.CIRCLE="circle",n.LINE="line",n))(Ge||{}),Ve=(n=>(n.RULE="rule",n.CONFIG="config",n))(Ve||{}),Ke=(n=>(n.STRING="string",n.NUMBER="number",n.BOOLEAN="boolean",n.OBJECT="object",n.ARRAY="array",n.NULL="NULL",n.DATE="date",n.DATETIME="datetime",n.TIME="time",n))(Ke||{}),Xe=(n=>(n.MODAL="modal",n.EVENT="event",n.VAR="var",n))(Xe||{}),He=(n=>(n.LEFT="left",n.CENTER="center",n.RIGHT="right",n.TOP="top",n.BOTTOM="bottom",n))(He||{}),Fe=(n=>(n.CLOSE_MODAL="__CLOSEMODAL__",n.OPEN_MODAL="__OPENMODAL__",n.REFRESH_TABLE="__REFRESHTABLE__",n))(Fe||{}),We=(n=>(n.INLINE="inline",n.MODAL="modal",n))(We||{}),$e=(n=>(n.DELETE="delete",n.COPY="copy",n))($e||{}),je=(n=>(n.DELETE="delete",n.EDIT="edit",n.COPY="copy",n))(je||{}),ze=(n=>(n.JS="js",n))(ze||{}),qe=(n=>(n.alwaysCover="alwaysCover",n.notCovered="notCovered",n))(qe||{}),Je=(n=>(n.HIDDEN="hidden",n.READONLY="readonly",n.DISABLED="disabled",n.REQUIRED="required",n.ASSIGNMENT="assignment",n))(Je||{}),Qe=(n=>(n.OUTLINE="OUTLINE",n.WIDGETS="WIDGETS",n.FIELD="FIELD",n.MODAL="MODAL",n.JS="JS",n.CSS="CSS",n.TEMPLATE="TEMPLATE",n.LO="LO",n))(Qe||{}),Ze=(n=>(n.FORM="form",n.LAYOUT="layout",n.ADVANCED="advanced",n.DATA="data",n.BUTTON="button",n.RDO="rdo",n.KIT="kit",n.PROCESS="process",n))(Ze||{}),w=(n=>(n.WEB="web",n.MOBILE="mobile",n))(w||{}),Ye=(n=>(n.MODAL="modal",n.MODAL_BODY="modalBody",n.MODAL_FOOTER="modalFooter",n.BottomButtonContainer="bottom-button-container",n))(Ye||{}),et=(n=>(n.WEEK_NOW="sys.pageDesigner.dateRange.weekNow",n.MONTH_NOW="sys.pageDesigner.dateRange.monthNow",n.QUARTER_NOW="sys.pageDesigner.dateRange.quarterNow",n.YEAR_NOW="sys.pageDesigner.dateRange.yearNow",n.WEEk_BEFORE="sys.pageDesigner.dateRange.weekBefore",n.MONTH_BEFORE="sys.pageDesigner.dateRange.monthBefore",n.QUARTER_BEFORE="sys.pageDesigner.dateRange.quarterBefore",n.YEAR_BEFORE="sys.pageDesigner.dateRange.yearBefore",n.DATE_BEFORE="sys.pageDesigner.dateRange.dateBefore",n.DATE_AFTER="sys.pageDesigner.dateRange.dateAfter",n))(et||{}),tt=(n=>(n.DROPDOWN_SELECTION="dropdownSelection",n.TREE_SELECTION="treeSelection",n.MODAL_BOX_SELECTION="modalBoxSelection",n))(tt||{}),nt=(n=>(n["¥"]="¥",n.$="$",n.S$="S$",n))(nt||{}),st=(n=>(n.d="d",n["d:h"]="d:h",n["d:h:m"]="d:h:m",n["d:h:m:s"]="d:h:m:s",n.h="h",n["h:m"]="h:m",n["h:m:s"]="h:m:s",n.m="m",n["m:s"]="m:s",n.s="s",n))(st||{}),rt=(n=>(n.d="days",n["d:h"]="dayhour",n["d:h:m"]="dayhourminute",n["d:h:m:s"]="dayhourminutesecond",n.h="hour",n["h:m"]="hourminute",n["h:m:s"]="hourminutesecond",n.m="minute",n["m:s"]="minutesecond",n.s="seconds",n))(rt||{}),lt=(n=>(n["¥"]="chMoney",n.$="usMoney",n.S$="sgpMoney",n))(lt||{}),it=(n=>(n.SingleChoice="radio",n.MultipleChoice="checkbox",n))(it||{}),at=(n=>(n.Current="current",n.Whole="whole",n))(at||{}),ut=(n=>(n.Local="local",n.Server="server",n.PREVIEW_PRINT="PreviewPrint",n.DIRECT_PRINTING="DirectPrinting",n))(ut||{}),ot=(n=>(n.OPEN="open",n.APPROVE="linkApprove",n))(ot||{}),ct=(n=>(n.SYSTEM="system",n.TRANSACTION="transaction",n))(ct||{}),gt=(n=>(n.CURRENT="current",n.REFERENCE="reference",n))(gt||{}),pt=(n=>(n.BLOCK="block",n.INLINE_BLOCK="inline-block",n))(pt||{}),ht=(n=>(n.DEFAULT="default",n.LINK="link",n))(ht||{}),dt=(n=>(n.DEFAULT="default",n.PRIMARY="primary",n.ERROR="error",n.WARNING="warning",n.SUCCESS="success",n))(dt||{}),yt=(n=>(n.ORDINARY="ordinary",n.SQUARE="square",n))(yt||{}),_t=(n=>(n.SMALL="small",n.DEFAULT="middle",n.LARGE="large",n))(_t||{}),ft=(n=>(n.TEXT="TEXT",n.ICON_TEXT="ICON_TEXT",n.ICON="ICON",n))(ft||{}),It=(n=>(n.PRIMARY="primary",n.DEFAULT="default",n.DASHED="dashed",n.LINK="link",n))(It||{}),vt=(n=>(n.PRIMARY="primary",n.DANGER="danger",n.DEFAULT="default",n))(vt||{});const ts={TEXT:[{type:"primary",label:"sys.pageDesigner.button_primary",hasText:!0},{type:"default",label:"sys.pageDesigner.button_default",hasText:!0},{type:"primary",danger:!0,label:"sys.pageDesigner.button_primary_danger",hasText:!0},{type:"default",danger:!0,label:"sys.pageDesigner.button_danger",hasText:!0},{type:"dashed",label:"sys.pageDesigner.button_dashed",hasText:!0},{type:"link",label:"sys.pageDesigner.button_text",hasText:!0}],ICON_TEXT:[{type:"primary",label:"sys.pageDesigner.button_primary",hasText:!0,hasIcon:!0},{type:"default",label:"sys.pageDesigner.button_default",hasText:!0,hasIcon:!0},{type:"primary",danger:!0,label:"sys.pageDesigner.button_primary_danger",hasText:!0,hasIcon:!0},{type:"default",danger:!0,label:"sys.pageDesigner.button_danger",hasText:!0,hasIcon:!0},{type:"dashed",label:"sys.pageDesigner.button_dashed",hasText:!0,hasIcon:!0},{type:"link",label:"sys.pageDesigner.button_text",hasText:!0,hasIcon:!0}],ICON:[{type:"primary",hasIcon:!0},{type:"default",hasIcon:!0},{type:"primary",danger:!0,hasIcon:!0},{type:"default",danger:!0,hasIcon:!0},{type:"dashed",hasIcon:!0},{type:"link",hasIcon:!0}]};var St=(n=>(n.COLUMNDELETE="columnDelete",n.COLUMNLINK="columnLink",n.COPY="copy",n.VERSION_COPY="version_copy",n.VERSION_CREATE="version_create",n.DETAILS="details",n.EDIT="edit",n.USAGEINFORMATION="usageInformation",n.MODELINGTRACEABILITY="modelingTraceability",n.IMPORT="import",n.EXPORT="export",n.BATCHDELETE="batchDelete",n.SUBMIT="submit",n.RESET="reset",n.EXCUTE="excute",n.LABEL_PRINT="label_print",n.DOCUMENT_PRINT="document_print",n.EXAMINE_AND_APPROVE="examineAndApprove",n))(St||{}),At=(n=>(n.NONE="none",n.EMBEDDED="embedded",n.EXTERNAL="external",n))(At||{}),Lt=(n=>(n.DEFAULT="default",n.EMBED="embed",n.SUB="sub",n))(Lt||{}),mt=(n=>(n.DEFAULTEDITING="defaultEditing",n.CLICKTOENTEREDITING="clickToEnterEditing",n))(mt||{}),Tt=(n=>(n.GCT="gct",n.GCT_MODAL="gct-modal",n.GCT_SUB_TABLE_MODAL="gct-sub-table-modal",n))(Tt||{}),Rt=(n=>(n.ALL="ALL",n.SEARCH="SEARCH",n.SEARCHALL="SEARCHALL",n.LEVEL="LEVEL",n.CHILDREN="CHILDREN",n))(Rt||{}),bt=(n=>(n.REALTIMEDATASOURCE="realTimeDataSource",n.SERVICEDATASOURCE="serviceDataSource",n))(bt||{}),Et=(n=>(n.SIGNATURE_ONLY="signature_only",n.SIGNATURE_DATE="signature_date",n.SIGNATURE_DATETIME="signature_datetime",n))(Et||{}),Ot=(n=>(n.WIPE_DATA="wipe_data",n.REFRESHDATA="refresh_data",n))(Ot||{}),Dt=(n=>(n.PAGE="page",n.MODAL="modal",n))(Dt||{}),Nt=(n=>(n.RdoInput="rdo-input",n.Input="input",n.ElectronicSignature="electronic-signature",n.UseinfoButton="useinfo-button",n.ModelingButton="modeling-button",n.ImportButton="gc-import-button",n.ExportButton="gc-export-button",n.DocumentPrintButton="document-print-button",n.SubmitButton="submit-button",n.BatchDeleteButton="batchdelete-button",n.CustomButton="custom-button",n.TableLinkButton="table-link-button",n.TableInfoButton="table-info-button",n.TableApproveButton="table-approve-button",n.OpeButton="ope-button",n.ResetButton="reset-button",n.RdoSaveButton="rdo-save-button",n.LabelPrintButton="labelprint-button",n.ProcessButton="process-button",n.ProcessApproveButton="process-approve-button",n.CreateButton="create-button",n.DeleteButton="delete-button",n.CopyButton="copy-button",n.RefreshButton="refresh-button",n.CreateVersionButton="create-version-button",n.CopyVersionButton="copy-version-button",n.Checkbox="checkbox",n.DataTable="data-table",n.TreeTable="tree-table",n.DataTableColumn="data-table-column",n.RefDataTable="ref-data-table",n.DataList="data-list",n.RdoDataList="rdo-data-list",n.DataTableOpe="data-table-ope",n.DataTableFormula="data-table-formula",n.Datepicker="datepicker",n.DateTimepicker="datetimepicker",n.Department="department",n.Form="form",n.RdoForm="rdo-form",n.RdoTable="rdo-table",n.MedProRdoForm="medprordo-form",n.MedProRdoTable="medprordo-table",n.FormProcess="form-process",n.Inputmoney="inputmoney",n.Inputnumber="inputnumber",n.InputDouble="inputdouble",n.Radio="radio",n.Select="select",n.RdoSelect="rdo-select",n.Switch="switch",n.Textarea="textarea",n.Timepicker="timepicker",n.Userpicker="userpicker",n.Search="search",n.SelectSearch="select-search",n.QuickSearch="quick-search",n.LayoutContainer="layout-container",n.ButtonContainer="button-container",n.ButtonProcessContainer="button-process-container",n.BottomButtonContainer="bottom-button-container",n.Grid="grid",n.GridCol="grid-col",n.Tabs="tabs",n.TabPane="tab-pane",n.LeftRightColumns="left-right-columns",n.TopBottomColumns="top-bottom-columns",n.LeftLayoutThree="left-layout-three",n.TopLayoutThree="top-layout-three",n.UploadFile="upload-file",n.UploadImage="upload-image",n.SubTable="sub-table",n.SubTableOpe="sub-table-ope",n.SubTableAddBtn="sub-table-add-button",n.SubTableCopyBtn="sub-table-copy-button",n.SubTableEditBtn="sub-table-edit-button",n.SubTableDeleteBtn="sub-table-delete-button",n.LinkPageBtn="link-page-button",n.Collapse="collapse",n.CardList="card-list",n.CardHeaderLeft="card-header-left",n.CardHeaderRight="card-header-right",n.CardContent="card-content",n.CardOpeBtn="card-ope-btn",n.BaseButton="base-button",n.ReadonlyCmp="readonlycmp",n.TableSelect="table-select",n.GenCheckbox="gen-checkbox",n.GenRadio="gen-radio",n.GenSwitch="gen-switch",n.WorkflowNodes="workflow-nodes",n.WorkflowNodeModal="workflow-node-modal",n.ESOP="e-sop",n.EXPRESSION="expression",n.ExpressionCondition="expression-condition",n.AGG="agg",n.DynamicFormType="dynamic-form-type",n.DynamicFormValue="dynamic-form-value",n.DynamicFormOpts="dynamic-form-options",n.DynamicFormShowType="dynamic-form-show-type",n.DynamicTable="dynamic-table",n.Transaction="transaction",n.SerialRule="serial-rule",n.LabelTemplate="label-template",n.LabelTemplateRef="label-template-ref",n.DocumentTemplate="document-template",n.Wacom="wacom",n.Text="text",n.CustomField="custom-field",n.Printer="printer",n.Descriptions="descriptions",n.RangeUser="range-user",n.GenImage="gen-image",n.TestButton="test-button",n.Iframe="iframe",n.ExcuteButton="medproexcute-button",n.SubDataTable="sub-data-table",n.Signature="signature",n.OnlineForm="online-form",n.TmplTreeSelect="tmpl-tree-select",n.Boolean="boolean",n.BizProcess="biz-process",n.ApprovalHistory="approval-history",n.FlowDiagram="flow-diagram",n))(Nt||{}),Mt=(n=>(n.SearchInput="SearchInput",n.SearchNumberInput="SearchNumberInput",n.SearchStringNumberInput="SearchStringNumberInput",n.SearchSwitch="SearchSwitch",n.SearchDate="SearchDate",n.SearchDateTime="SearchDateTime",n.SearchTime="SearchTime",n.SearchSelect="SearchSelect",n.SearchRdoSelect="SearchRdoSelect",n.SearchTransaction="SearchTransaction",n.SearchTmplTreeSelect="SearchTmplTreeSelect",n.SearchPrinter="SearchPrinter",n.SearchBizProcess="SearchBizProcess",n))(Mt||{}),wt=(n=>(n.ATUO="selfAdaption",n.ENUMERATION="fixed",n.PERCENTAGE="percentage",n))(wt||{}),xt=(n=>(n.NULL="NULL",n.STRING="空字符串",n.ZERO="0",n))(xt||{}),Pt=(n=>(n.TOTAL="total",n.AVERAGE="average",n))(Pt||{}),Ct=(n=>(n.RIGHT="right",n.NONE="",n.LEFT="left",n))(Ct||{}),Ut=(n=>(n.COLUMN_TEXT="COLUMN_TEXT",n.COLUMN_NUMBER="COLUMN_NUMBER",n.COLUMNTEXT_DATA="COLUMNTEXT_DATA",n.COLUMNTEXT_REF="COLUMNTEXT_REF",n.COLUMNTEXT_ENUM="COLUMNTEXT_ENUM",n.COLUMNTEXT_ORG="COLUMNTEXT_ORG",n.COLUMNTEXT_USER="COLUMNTEXT_USER",n.COLUMNTEXT_BOOLEAN="COLUMNTEXT_BOOLEAN",n.COLUMNTEXT_IMAGE="COLUMNTEXT_IMAGE",n))(Ut||{}),Bt=(n=>(n.LINE="line",n.CARD="card",n.TEXt="text",n.CAPSULE="capsule",n.CUSTOM="custom",n))(Bt||{}),kt=(n=>(n.ASC="asc",n.DESC="desc",n))(kt||{}),Gt=(n=>(n.CMP_TEXT="TEXT",n.CMP_TEXTAREA="TEXTAREA",n.CMP_ELECTRONICSIGNATURE="ELECTRONICSIGNATURE",n.CMP_BOOLEAN="BOOLEAN",n.CMP_SELECT_LIST="SELECT_LIST",n.CMP_RADIO="RADIO",n.CMP_CHECKBOX="CHECKBOX",n.CMP_DROPDOWN_SELECT="dropdownSelection",n.CMP_MODAL="modalBoxSelection",n.CMP_TREE_SELECTION="treeSelection",n.CMP_NUMBER="NUMBER",n.CMP_CURRENCY="CURRENCY",n.CMP_TIME="TIME",n))(Gt||{});const ns={TEXT:"sys.pageDesigner.bindCmpStyle.bindText",TEXTAREA:"sys.pageDesigner.bindCmpStyle.bindTextarea",ELECTRONICSIGNATURE:"sys.pageDesigner.bindCmpStyle.electronicSignature",BOOLEAN:"sys.pageDesigner.bindCmpStyle.bindBoolean",SELECT_LIST:"sys.pageDesigner.bindCmpStyle.bindSelectList",RADIO:"sys.pageDesigner.bindCmpStyle.bindRadio",CHECKBOX:"sys.pageDesigner.bindCmpStyle.bindCheckbox",dropdownSelection:"sys.pageDesigner.bindCmpStyle.bindDropdownSelect",modalBoxSelection:"sys.pageDesigner.bindCmpStyle.bindModal",treeSelection:"sys.pageDesigner.bindCmpStyle.bindTreeSelection",NUMBER:"sys.pageDesigner.bindCmpStyle.bindNumber",CURRENCY:"sys.pageDesigner.bindCmpStyle.bindCurrency",TIME:"sys.pageDesigner.bindCmpStyle.bindTime"};var Vt=(n=>(n.BindText="bindText",n.BindLongText="BindLongText",n.BindBool="bindBool",n.BindPerson="bindPerson",n.BindDept="bindDept",n.BindLink="bindLink",n.BindMulti="bindMulti",n.BindNum="bindNum",n.BindDecimal="bindDecimal",n))(Vt||{});const ss={TEXT:"input",TEXTAREA:"textarea",ELECTRONICSIGNATURE:"electronic-signature",SELECT_LIST:"select",RADIO:"radio",CHECKBOX:"checkbox"},rs={bindText:["TEXT","TEXTAREA"],BindLongText:["TEXT","TEXTAREA","ELECTRONICSIGNATURE"],bindBool:["BOOLEAN","SELECT_LIST","RADIO","CHECKBOX"],bindPerson:["dropdownSelection","modalBoxSelection"],bindDept:["treeSelection","modalBoxSelection"],bindLink:["SELECT_LIST","RADIO"],bindMulti:["SELECT_LIST","CHECKBOX"],bindNum:["NUMBER","CURRENCY","TIME"],bindDecimal:["NUMBER","CURRENCY"]};var Kt=(n=>(n.FOLD_ALL="foldAll",n.FOLD_PART="foldPart",n))(Kt||{});const ls=[d.BOOLEAN,d.DATE,d.DATE_TIME,d.DECIMAL,d.DOUBLE,d.ENUM,d.ENUM_MULTI,d.INTEGER,d.LONG,d.LONG_TEXT,d.TEXT,d.USER_MULTI,d.USER,d.TIME,d.REF_MULTI,d.REF,d.RDO_REF,d.ORG_MULTI,d.ORG,d.AGG,d.EXPRESSION,d.SERIAL,d.ONLINE_FORM_TEMPLATE,d.E_DHR_TEMPLATE,d.PRINTER,d.LABEL_TEMPLATE_REF,d.Biz_Process,d.DOCUMENT_TEMPLATE];var Xt=(n=>(n.SUCCESS="SUCCESS",n.FAILURE="FAILURE",n.PREPARING="PREPARING",n.EVENTING="EVENTING",n.PROCESSIING="PROCESSIING",n.DEPLOYING="DEPLOYING",n))(Xt||{}),Ht=(n=>(n.Insert="Insert",n.Update="Update",n.Delete="Delete",n.Import="Import",n.Export="Export",n.Setting="Setting",n.Download="Download",n.Test="Test",n.Design="Design",n.Add="Add",n))(Ht||{}),Ft=(n=>(n.ResetPassword="ResetPassword",n.PermissionSetting="PermissionSetting",n.RemoveAndHandover="RemoveAndHandover",n.CategoryManagement="CategoryManagement",n.BaiscSetting="BaiscSetting",n.WatermarkSetting="WatermarkSetting",n.SecuritySetting="SecuritySetting",n.LoginSetting="LoginSetting",n.ThemeSetting="ThemeSetting",n.OrganizationSetting="OrganizationSetting",n.ApkSetting="ApkSetting",n.DevelopIconManagement="DevelopIconManagement",n.DevelopImageManagement="DevelopImageManagement",n.Reprint="Reprint",n.ViewTask="ViewTask",n.ManualTrigger="ManualTrigger",n.Setting="Setting",n.Terminate="Terminate",n.Reassign="Reassign",n.Log="Log",n.Moving="Moving",n.EnableDisable="EnableDisable",n))(Ft||{});const is=["Insert","Update","Delete"],as=["BaiscSetting","WatermarkSetting","SecuritySetting","LoginSetting","ThemeSetting","OrganizationSetting","ApkSetting"];var Wt=(n=>(n.XS="XS",n.SM="SM",n.MD="MD",n.LG="LG",n.XL="XL",n.XXL="XXL",n))(Wt||{}),$t=(n=>(n[n.XS=480]="XS",n[n.SM=576]="SM",n[n.MD=768]="MD",n[n.LG=992]="LG",n[n.XL=1200]="XL",n[n.XXL=1600]="XXL",n))($t||{});const b=new Map;b.set("XS",480);b.set("SM",576);b.set("MD",768);b.set("LG",992);b.set("XL",1200);b.set("XXL",1600);const jt="TIMEZONE__",us="TENANT__",os="TOKEN__",cs="LOCALE__",gs="LOCALE__LIST",ps="LOCAL_I18N_TRANSLATE",hs="USER__INFO__",ds="ROLES__KEY__",ys="PROJ__CFG__KEY__",_s="LOCK__INFO__KEY__",fs="MULTIPLE_TABS__KEY__",Is="__APP__DARK__MODE__",vs="COMMON__LOCAL__KEY__",Ss="COMMON__SESSION__KEY__",As="DESIGNER_SESSION_CACHE_KEY";var zt=(n=>(n[n.SESSION=0]="SESSION",n[n.LOCAL=1]="LOCAL",n))(zt||{}),qt=(n=>(n.EQ="eq",n.IEQ="iEq",n.NE="ne",n.INE="ine",n.GT="gt",n.GE="ge",n.LT="lt",n.LE="le",n.ISNULL="isNull",n.ISNOTNULL="isNotNull",n.LIKE="like",n.ILIKE="iLike",n.NOTLIKE="notLike",n.NOTILIKE="iNotLike",n.LEFTLIKE="leftLike",n.ILEFTLIKE="iLeftLike",n.RIGHTLIKE="rightLike",n.IRIGHTLIKE="iRightLike",n.IN="in",n.NOTIN="notIn",n.CONTAINANY="containAny",n.CONTAINALL="containAll",n.RANGE="range",n.ORANGE="oRange",n.LORANGE="loRange",n.RORANGE="roRange",n.VERSIONIN="versionIn",n))(qt||{});const Ls=["in","notIn","containAny","containAll","versionIn"];var Jt=(n=>(n.LEFT="left",n.CENTER="center",n.RIGHT="right",n.BETWEEN="between",n))(Jt||{});const ms=["#DBDBDB","#FFE4E4","#D1D1D1","#838383","#838383","#FFEECB","#D8E3FF","#FF8888","#FF8888","#0DAA9C","#3370FF"];var Qt=(n=>(n[n.SINGLELINE=0]="SINGLELINE",n[n.HEAD=1]="HEAD",n[n.BATCH=2]="BATCH",n[n.SINGLELINE_RDO=3]="SINGLELINE_RDO",n))(Qt||{}),Zt=(n=>(n[n.parentVersion=0]="parentVersion",n[n.childVersion=1]="childVersion",n))(Zt||{}),Yt=(n=>(n[n.PAGE_NOT_ACCESS=403]="PAGE_NOT_ACCESS",n[n.PAGE_NOT_FOUND=404]="PAGE_NOT_FOUND",n[n.ERROR=500]="ERROR",n[n.NET_WORK_ERROR=1e4]="NET_WORK_ERROR",n[n.PAGE_NOT_DATA=10100]="PAGE_NOT_DATA",n))(Yt||{}),en=(n=>(n.VUE="vue",n.SCRIPT="script",n.RESOURCE="resource",n.AJAX="ajax",n.PROMISE="promise",n))(en||{}),tn=(n=>(n[n.SUCCESS=200]="SUCCESS",n[n.ERROR=-1]="ERROR",n[n.TIMEOUT=401]="TIMEOUT",n.TYPE="success",n))(tn||{}),nn=(n=>(n.GET="GET",n.POST="POST",n.PUT="PUT",n.DELETE="DELETE",n))(nn||{}),H=(n=>(n.JSON="application/json;charset=UTF-8",n.FORM_URLENCODED="application/x-www-form-urlencoded;charset=UTF-8",n.FORM_DATA="multipart/form-data;charset=UTF-8",n))(H||{}),sn=(n=>(n.submit="post",n.listByIds="get",n.getone="post",n.listAll="post",n.listByPage="post",n.listTree="post",n.save="post",n.saveOrUpdate="post",n.saveBatch="post",n.importData="post",n.exportData="post",n.remove="post",n.removeById="delete",n.removeByIds="delete",n.update="put",n.updateById="put",n.updateByIds="put",n.rdoSave="post",n.rdoListAll="post",n.rdoListByPage="post",n.rdoListVersionById="get",n.rdoSaveVersion="post",n.rdoSaveBatch="post",n.rdoUpdateVersionById="put",n.rdoRemoveVersionById="delete",n.rdoRemoveById="delete",n.rdoGetVersionById="get",n.getOne="post",n.rdoGetVersionByRefId="post",n.getById="get",n.rdoListAllVersion="post",n.rdoRefListByPage="post",n.export="post",n.import="post",n.rdoExport="post",n.rdoImport="post",n.biz_search="post",n))(sn||{}),rn=(n=>(n.SIDEBAR="sidebar",n.MIX_SIDEBAR="mix-sidebar",n.MIX="mix",n.TOP_MENU="top-menu",n))(rn||{}),ln=(n=>(n.NONE="NONE",n.FOOTER="FOOTER",n.HEADER="HEADER",n))(ln||{}),an=(n=>(n.VERTICAL="vertical",n.HORIZONTAL="horizontal",n.VERTICAL_RIGHT="vertical-right",n.INLINE="inline",n))(an||{}),un=(n=>(n[n.NONE=0]="NONE",n[n.TOP=1]="TOP",n[n.LEFT=2]="LEFT",n))(un||{}),on=(n=>(n.CENTER="center",n.START="start",n.END="end",n))(on||{}),cn=(n=>(n.HOVER="hover",n.CLICK="click",n))(cn||{}),gn=(n=>(n.BASE_LOGIN="/login",n.BASE_TENANT="/tenant",n.BASE_HOME="/home",n.USER_CENTER="/user-center",n.PROCESS_CENTER="/process",n.MESSAGE_CENTER="/message",n.ERROR_PAGE="/exception",n.ERROR_LOG_PAGE="/error-log/list",n.USER_CENTER_PWD="/user-center/password",n))(gn||{}),pn=(n=>(n.SUPER="super",n.TEST="test",n))(pn||{}),hn=(n=>(n.DEFAULT="default",n.SMALL="small",n.LARGE="large",n))(hn||{}),dn=(n=>(n.APPROVING="APPROVING",n.COMPLETED="COMPLETED",n.REFUSED="REFUSED",n.REJECTED="REJECTED",n.TERMINATED="TERMINATED",n.WITHDRAWN="WITHDRAWN",n))(dn||{});const Ts={APPROVING:"sys.process.status.approving",COMPLETED:"sys.process.status.completed",REFUSED:"sys.process.status.refused",REJECTED:"sys.process.status.rejected",TERMINATED:"sys.process.status.terminated",WITHDRAWN:"sys.process.status.withdrawn"};var yn=(n=>(n.MY_APPLICATION="myApplication",n.MY_AGENT="myAgent",n.MY_DONE="myDone",n.MY_CUSTOM="myCustom",n.MY_CUSTOM_Modal="myCustomModal",n))(yn||{}),M=(n=>(n.DESIGN="design",n.WEB="web",n.MOBILE="mobile",n))(M||{});class _n{constructor(){r(this,"projectName",R.PORTAL);r(this,"tenantId","");r(this,"lang","zh-CN");r(this,"appInfo",{})}}class F{constructor(){r(this,"loaded",!1);r(this,"isNew",!0);r(this,"loading",!1);r(this,"destroyed",!1);r(this,"data",{})}}class A{constructor(){r(this,"disabled",!1);r(this,"readonly",!1);r(this,"visible",!0);r(this,"keepalive",!1);r(this,"destroyed",!1)}}class fn extends A{}class In extends A{}class vn extends A{constructor(){super(...arguments);r(this,"activePane","")}}class Sn extends A{}class W extends A{constructor(){super(...arguments);r(this,"label","");r(this,"value",null);r(this,"options",[])}}class An extends A{constructor(){super(...arguments);r(this,"expand",!0)}}class Ln extends W{}const Rs=k.defineStore("global-store",{state(){return new _n},getters:{getAppInfo(){return this.appInfo}},actions:{getAppInfo(){return this.appInfo},setProjectName(n){this.$state.projectName=n},setTenantId(n){this.$state.tenantId=n},setLang(n){this.$state.lang=n}}});class mn{constructor(){r(this,"pinia",k.createPinia());r(this,"store");k.setActivePinia(this.pinia),this.store=Rs()}}function bs(n){if(n instanceof Array)n&&n.length>0&&n.splice(0,n.length);else if(n instanceof Object&&n)for(const e in n)Object.prototype.hasOwnProperty.call(n,e)&&delete n[e]}class Es{constructor(){this.map=new Map,this.maxListeners=100}setMaxListeners(e){this.maxListeners=e}getSize(e){return this.map.has(e)?this.map.get(e).length:0}addListener(e,t){if(t instanceof Function){this.map.has(e)||this.map.set(e,[]);const s=this.map.get(e);if(s.length<this.maxListeners)s.push(t);else throw new Error(`事件监听已达最大上限[${this.maxListeners}],无法新增监听!`)}}removeListener(e,t){if(this.map.has(e)){const s=this.map.get(e);if(s.length>0){for(let u=0;u<s.length;u++)if(s[u]===t){s.splice(u,1);break}}}}emit(e,...t){this.map.has(e)&&this.map.get(e).forEach(u=>{u(...t)})}async asyncEmit(e,...t){if(this.map.has(e)){const u=this.map.get(e).map(l=>l(...t));return Promise.all(u)}return[]}reset(){this.map.forEach(e=>{bs(e)}),this.map.clear()}}class Tn{constructor(e){this.e=new Es,this.e.setMaxListeners(e||300)}getSize(e){return this.e.getSize(e)}on(e,t){this.e.addListener(e,t)}off(e,t){this.e.removeListener(e,t)}emit(e,...t){this.e.emit(e,...t)}asyncEmit(e,...t){return this.e.asyncEmit(e,...t)}reset(){this.e.reset()}}const{toString:Os}=Object.prototype;function Ds(n){return $(n)==="function"}function Q(n){return $(n)==="object"}function Ns(n){return $(n)==="array"}const Ms={"[object Boolean]":"boolean","[object Number]":"number","[object String]":"string","[object Function]":"function","[object Array]":"array","[object Date]":"date","[object RegExp]":"regExp","[object Undefined]":"undefined","[object Null]":"null","[object Object]":"object","[object Set]":"set","[object Map]":"map","[object WeakMap]":"weakmap"};function $(n){return Ms[Os.call(n)]}function Rn(n,e,t=0,s=!1,u="/"){let l="";if(s&&!/^(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)$/.test(location.hostname)){const g=location.hostname;g.indexOf(".")!==g.lastIndexOf(".")&&(l=`;domain=${g.substring(g.indexOf("."),g.length)}`)}if(t!==0){const i=t*24*60*60*1e3,g=new Date(new Date().getTime()+i);document.cookie=`${n}=${escape(e)};path=${u};expires=${g.toUTCString()}${l}`}else document.cookie=`${n}=${escape(e)};path=${u}${l}`}function ws(n,e){Rn(n,"",-1,e)}function xs(n){const e=new RegExp(`(^| )${n}=([^;]*)(;|$)`),t=document.cookie.match(e);return t&&t.length>1?unescape(t[2]):null}class x{constructor(){this.items=[]}get size(){return this.items.length}callSync(e,...t){const s=e||Object.create({});let u;for(let l=0;l<this.items.length;l++){const i=this.items[l];if(i.fn&&(u=i.fn(s,...t)),u===null){console.warn(`因${i.fn?i.fn.name:null}方法返回值为「null」,钩子中断执行。`,i);break}}return s}tap(e){if(e&&Ds(e)){const t={mode:"sync"};t.fn=e,this.items.push(t)}}removeTap(e){if(e)for(let t=0;t<this.items.length;t++){const s=this.items[t];e===s.fn&&this.items.splice(t,1)}}clear(){this.items=[]}}class G{constructor(){r(this,"map",new Map);r(this,"providers",new Map);r(this,"hooks",{register:new x,unregister:new x})}register(e,t){this.map.set(e,t);const s=t();this.providers.set(e,s),this.hooks.register.callSync(null,s)}unregister(e){this.map.delete(e);const t=this.providers.get(e);t&&(this.hooks.unregister.callSync(null,t),this.providers.delete(e))}getProvider(e){return this.providers.get(e)}getKeys(){return Array.from(this.map.keys())}getProviders(){return Array.from(this.providers.values())}}const T=class T{static register(e,t){T.editors.set(e,t)}static unregister(e){T.editors.delete(e)}static get(e){if(this.providers.has(e))return this.providers.get(e);const t=T.editors.get(e);if(t){const s=t();return this.providers.set(e,s),s}return null}};r(T,"editors",new Map),r(T,"providers",new Map);let P=T;const O=class O{static register(e,t){O.items.set(e,t)}static unregister(e){O.items.delete(e)}static create(e){const t=O.items.get(e);return t?t():null}};r(O,"items",new Map);let C=O;class V{constructor(){r(this,"map",new Map);r(this,"hooks",{register:new x,unregister:new x})}register(e,t){this.map.set(e,t),this.hooks.register.callSync(null,e,t)}unregister(e){this.map.delete(e),this.hooks.unregister.callSync(null,e)}get(e){return this.map.get(e)}keys(){return Array.from(this.map.keys())}}var j=(n=>(n.PREFIX="EDITOR___",n))(j||{}),bn=(n=>(n.LENGTH_UNIT="length-unit",n.COLOR="color",n.SPAN="span",n.TEXT="text",n.NUMBER="number",n.INFO="info",n.SELECT="select",n.RADIO="radio",n.PICKER="picker",n.I18N="i18n",n.TEXTAREA="textarea",n.DATE_RANGE="date-range",n.SWITCH="switch",n.CHECK_SWITCH="check-switch",n.ICON_SELECT="icon-select",n.CHECKBOX="checkbox",n))(bn||{}),En=(n=>(n.LENGTH_UNIT="length-unit-editor",n.COLOR="color-editor",n.SPAN="span-editor",n.TEXT="text-editor",n.NUMBER="number-editor",n.INFO="info-editor",n.SELECT="select-editor",n.RADIO="radio-editor",n.PICKER="picker-editor",n.I18N="i18n-editor",n.TEXTAREA="textarea-editor",n.DATE_RANGE="date-range-editor",n.SWITCH="switch-editor",n.CHECK_SWITCH="check-switch-editor",n.ICON_SELECT="icon-select-editor",n.CHECKBOX="checkbox-editor",n.BORDER="border-editor",n.BORDER_RADIUS="border-radius-editor",n.ALIGN="align-editor",n.FONT_STYLE="font-style-editor",n.POSITION="position-editor",n.SPACING="spacing-editor",n.MARGIN="margin-editor",n))(En||{}),On=(n=>(n.FORM_TITLE_GROUP="form-title-group",n))(On||{});const U={TOKEN:"gct-token"},Dn="gct",Nn="/minio/plugins";function K(n,e){return m.mergeWith(m.cloneDeep(n),e,(t,s)=>{if(Q(t)&&Q(s))return m.mergeWith(m.cloneDeep(t),s,(u,l)=>Ns(u)?m.unionWith(u,l,m.isEqual):void 0)})}function Mn(){return xs(U.TOKEN)}function Ps(n){n?Rn(U.TOKEN,n,0,!0):ws(U.TOKEN)}function Cs(){const n=location.pathname.replace("/src/projects","").split("/");return{aid:n[2],pid:n[3]}}const Us=(()=>{const n=navigator.userAgent,e=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/,t=window.innerWidth<=768,s="ontouchstart"in window||navigator.maxTouchPoints>0;return e.test(n)||t&&s})();function Bs(){return localStorage.getItem(jt)||"UTC+08:00"}function ks(n){n.interceptors.request.use(e=>{if(e.headers||(e.headers=new Y.AxiosHeaders),Object.assign(e.headers,{Token:Mn(),Source:Us?502:501,Lang:_gct.store.lang,"Tenant-Id":_gct.store.tenantId,Timezone:Bs()}),!e.headers["App-Tag"])if(e.url.includes("/gct-apaas/")){const t=Cs();e.headers["App-Tag"]=t.aid,e.headers.Module="TENANT_CENTER"}else e.headers["App-Tag"]="__platform__";return[R.TENANT_CENTER,R.APP_DESIGNER,R.WEB_RENDER].includes(_gct.store.projectName)?e.headers.Module="TENANT_CENTER":_gct.store.projectName===R.BACKEND_MANAGEMENT&&(e.headers.Module="BACKEND_MANAGEMENT"),e})}class wn{constructor(e={}){r(this,"instance");this.options=e,this.instance=Y.create(K({baseURL:"/gct-apaas/api"},e)),this.use(ks)}use(e){e(this.instance)}get(e,t={},s={},u={}){return this.request(e,t,s,{...u,method:"GET"})}post(e,t={},s={},u={}){return this.request(e,t,s,{...u,method:"POST"})}put(e,t={},s={},u={}){return this.request(e,t,s,{...u,method:"PUT"})}delete(e,t={},s={},u={}){return this.request(e,t,s,{...u,method:"DELETE"})}async request(e,t,s,u={}){if(s){const i=qn.stringify(s,{arrayFormat:"brackets"});i&&(e.includes("?")?e+=`&${i}`:e+=`?${i}`)}const l=await this.instance.request(K({url:e,data:JSON.stringify(t||{}),params:s,timeout:2*60*1e3,headers:{"Content-Type":H.JSON}},u));if(l.status>=200&&l.status<300)return l.data;throw l}}class xn{constructor(){r(this,"configs",new Map);r(this,"cache",new Map)}getConfig(e){return this.configs.get(e)}register(e){this.configs.set(e.tag,e),e.items&&this.cache.set(e.tag,e.items)}unregister(e){this.configs.delete(e),this.cache.delete(e)}get(e){return this.cache.get(e)||[]}async asyncGet(e,t){const s=this.configs.get(e);return s?s.mode==="static"?this.getByConfig(s):s.mode==="async"?this.cache.has(e)?this.cache.get(e)||[]:this.asyncGetByConfig(s,t):[]:[]}getByConfig(e){return e.items||[]}async asyncGetByConfig(e,t={}){if(e.fetch){const s=await e.fetch(t||{});if(s){const[u,l]=e.keys||["name","id"];return this.deepFormat(s,u,l)}}return[]}deepFormat(e,t,s){return e.map(u=>{const l={label:u[t],value:u[s]};return u.children&&u.children.length>0&&(l.options=this.deepFormat(u.children,t,s)),l})}}const Gs="is-";function L(n,e,t,s,u){let l=`${n}-${e}`;return t&&(l+=`-${t}`),s&&(l+=`__${s}`),u&&(l+=`--${u}`),l}class Pn{constructor(e,t){r(this,"namespace");this.block=e,this.namespace=t||Dn}b(e=""){return L(this.namespace,this.block,e,"","")}e(e){return e?L(this.namespace,this.block,"",e,""):""}m(e){return e?L(this.namespace,this.block,"","",e):""}be(e,t){return e&&t?L(this.namespace,this.block,e,t,""):""}em(e,t){return e&&t?L(this.namespace,this.block,"",e,t):""}bm(e,t){return e&&t?L(this.namespace,this.block,e,"",t):""}bem(e,t,s){return e&&t&&s?L(this.namespace,this.block,e,t,s):""}is(e,t){return e&&t?`${Gs}${e}`:""}cssVar(e){const t={};for(const s in e)e[s]&&(t[this.cssVarName(s)]=e[s]);return t}cssVarBlock(e){const t={};for(const s in e)e[s]&&(t[this.cssVarBlockName(s)]=e[s]);return t}cssVarName(e){return`--${this.namespace}-${e}`}cssVarBlockName(e){return`--${this.namespace}-${this.block}-${e}`}}function Vs(n){return n&&n.__esModule&&Object.prototype.hasOwnProperty.call(n,"default")?n.default:n}var B,Z;function Ks(){if(Z)return B;Z=1;function n(u){if(typeof u!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(u))}function e(u,l){for(var i="",g=0,o=-1,h=0,p,y=0;y<=u.length;++y){if(y<u.length)p=u.charCodeAt(y);else{if(p===47)break;p=47}if(p===47){if(!(o===y-1||h===1))if(o!==y-1&&h===2){if(i.length<2||g!==2||i.charCodeAt(i.length-1)!==46||i.charCodeAt(i.length-2)!==46){if(i.length>2){var _=i.lastIndexOf("/");if(_!==i.length-1){_===-1?(i="",g=0):(i=i.slice(0,_),g=i.length-1-i.lastIndexOf("/")),o=y,h=0;continue}}else if(i.length===2||i.length===1){i="",g=0,o=y,h=0;continue}}l&&(i.length>0?i+="/..":i="..",g=2)}else i.length>0?i+="/"+u.slice(o+1,y):i=u.slice(o+1,y),g=y-o-1;o=y,h=0}else p===46&&h!==-1?++h:h=-1}return i}function t(u,l){var i=l.dir||l.root,g=l.base||(l.name||"")+(l.ext||"");return i?i===l.root?i+g:i+u+g:g}var s={resolve:function(){for(var l="",i=!1,g,o=arguments.length-1;o>=-1&&!i;o--){var h;o>=0?h=arguments[o]:(g===void 0&&(g=process.cwd()),h=g),n(h),h.length!==0&&(l=h+"/"+l,i=h.charCodeAt(0)===47)}return l=e(l,!i),i?l.length>0?"/"+l:"/":l.length>0?l:"."},normalize:function(l){if(n(l),l.length===0)return".";var i=l.charCodeAt(0)===47,g=l.charCodeAt(l.length-1)===47;return l=e(l,!i),l.length===0&&!i&&(l="."),l.length>0&&g&&(l+="/"),i?"/"+l:l},isAbsolute:function(l){return n(l),l.length>0&&l.charCodeAt(0)===47},join:function(){if(arguments.length===0)return".";for(var l,i=0;i<arguments.length;++i){var g=arguments[i];n(g),g.length>0&&(l===void 0?l=g:l+="/"+g)}return l===void 0?".":s.normalize(l)},relative:function(l,i){if(n(l),n(i),l===i||(l=s.resolve(l),i=s.resolve(i),l===i))return"";for(var g=1;g<l.length&&l.charCodeAt(g)===47;++g);for(var o=l.length,h=o-g,p=1;p<i.length&&i.charCodeAt(p)===47;++p);for(var y=i.length,_=y-p,S=h<_?h:_,v=-1,f=0;f<=S;++f){if(f===S){if(_>S){if(i.charCodeAt(p+f)===47)return i.slice(p+f+1);if(f===0)return i.slice(p+f)}else h>S&&(l.charCodeAt(g+f)===47?v=f:f===0&&(v=0));break}var J=l.charCodeAt(g+f),Hn=i.charCodeAt(p+f);if(J!==Hn)break;J===47&&(v=f)}var N="";for(f=g+v+1;f<=o;++f)(f===o||l.charCodeAt(f)===47)&&(N.length===0?N+="..":N+="/..");return N.length>0?N+i.slice(p+v):(p+=v,i.charCodeAt(p)===47&&++p,i.slice(p))},_makeLong:function(l){return l},dirname:function(l){if(n(l),l.length===0)return".";for(var i=l.charCodeAt(0),g=i===47,o=-1,h=!0,p=l.length-1;p>=1;--p)if(i=l.charCodeAt(p),i===47){if(!h){o=p;break}}else h=!1;return o===-1?g?"/":".":g&&o===1?"//":l.slice(0,o)},basename:function(l,i){if(i!==void 0&&typeof i!="string")throw new TypeError('"ext" argument must be a string');n(l);var g=0,o=-1,h=!0,p;if(i!==void 0&&i.length>0&&i.length<=l.length){if(i.length===l.length&&i===l)return"";var y=i.length-1,_=-1;for(p=l.length-1;p>=0;--p){var S=l.charCodeAt(p);if(S===47){if(!h){g=p+1;break}}else _===-1&&(h=!1,_=p+1),y>=0&&(S===i.charCodeAt(y)?--y===-1&&(o=p):(y=-1,o=_))}return g===o?o=_:o===-1&&(o=l.length),l.slice(g,o)}else{for(p=l.length-1;p>=0;--p)if(l.charCodeAt(p)===47){if(!h){g=p+1;break}}else o===-1&&(h=!1,o=p+1);return o===-1?"":l.slice(g,o)}},extname:function(l){n(l);for(var i=-1,g=0,o=-1,h=!0,p=0,y=l.length-1;y>=0;--y){var _=l.charCodeAt(y);if(_===47){if(!h){g=y+1;break}continue}o===-1&&(h=!1,o=y+1),_===46?i===-1?i=y:p!==1&&(p=1):i!==-1&&(p=-1)}return i===-1||o===-1||p===0||p===1&&i===o-1&&i===g+1?"":l.slice(i,o)},format:function(l){if(l===null||typeof l!="object")throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof l);return t("/",l)},parse:function(l){n(l);var i={root:"",dir:"",base:"",ext:"",name:""};if(l.length===0)return i;var g=l.charCodeAt(0),o=g===47,h;o?(i.root="/",h=1):h=0;for(var p=-1,y=0,_=-1,S=!0,v=l.length-1,f=0;v>=h;--v){if(g=l.charCodeAt(v),g===47){if(!S){y=v+1;break}continue}_===-1&&(S=!1,_=v+1),g===46?p===-1?p=v:f!==1&&(f=1):p!==-1&&(f=-1)}return p===-1||_===-1||f===0||f===1&&p===_-1&&p===y+1?_!==-1&&(y===0&&o?i.base=i.name=l.slice(1,_):i.base=i.name=l.slice(y,_)):(y===0&&o?(i.name=l.slice(1,p),i.base=l.slice(1,_)):(i.name=l.slice(y,p),i.base=l.slice(y,_)),i.ext=l.slice(p,_)),y>0?i.dir=l.slice(0,y-1):o&&(i.dir="/"),i},sep:"/",delimiter:":",win32:null,posix:null};return s.posix=s,B=s,B}var Xs=Ks();const D=Vs(Xs);class X{static async loadPluginConfig(e,t,s=[]){const u=`${e}-${t}-${s.join("_")}`;if(this.cache.has(u))return this.cache.get(u);const i=(await _gct.api.platform.plugin.getList()).data;return i.length>0&&this.cache.set(u,i),i}static async loadPlugins(e,t){if(t.length>0){const s=t.map(l=>{const i=D.join(Nn,l.name,"latest/dist");return{imports:{[l.name]:`${i}/${e}.system.min.js`},styles:{[l.name]:`${i}/${e}.min.css`}}}),u=[];return s.forEach(l=>{System.addImportMap(l),l.imports&&Object.keys(l.imports).forEach(i=>{u.push(System.import(i))})}),Promise.all(u)}return[]}static async loadPlugin(e,t,s,u){const l=`${t}-${s}-${u.join("_")}`,i=await this.loadPluginConfig(t,s);if(!this.cacheModule.has(l)){const g=await this.loadPlugins(t,i);g.forEach(o=>{o.default&&e.use(o.default)}),this.cacheModule.set(l,g)}return i}static loadDesignPlugin(e,t,s=[]){return this.loadPlugin(e,M.DESIGN,t,s)}static loadMobilePlugin(e,t=[]){return this.loadPlugin(e,M.MOBILE,w.MOBILE,t)}static loadWebPlugin(e,t=[]){return this.loadPlugin(e,M.WEB,w.WEB,t)}}r(X,"cache",new Map),r(X,"cacheModule",new Map);class Hs{constructor(e,t=!1){r(this,"baseDir");r(this,"url");this.isDev=t,this.url=new URL(e),this.baseDir=D.dirname(this.url.pathname)}dir(e){return this.isDev===!0?e:this.url.origin+D.resolve(this.baseDir,e)}}function Fs(n,e,t,s){return{install(u){n&&e&&_gct.register.editor.register(j.PREFIX+n,e),t&&u.component(s??t.name,t)}}}class Cn{constructor(e){r(this,"http");this.http=new wn({baseURL:e})}_put(e,t,s,u){return this.http.put(s!=null&&s.id?D.join(e,s==null?void 0:s.id):e,t||{},s||{},u)}_get(e,t,s,u){return this.http.get(e,t||{},s||{},u)}_delete(e,t,s,u){return this.http.delete(e,t||{},s||{},u)}_post(e,t,s,u){return this.http.post(e,t||{},s||{},u)}}class a extends Cn{constructor(e){super(D.join("/gct-apaas/api",e))}}class Ws extends a{constructor(){super("app-branch")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class $s extends a{constructor(){super("app-global-settings")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class js extends a{constructor(){super("app-granted-user")}async post(e,t={}){return this._post("",e,null,t)}async postBatch(e,t={}){return this._post("batch",e,null,t)}async getGrantedStatistic(e={}){return this._get("grantedStatistic",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async getRemoveAndTransfer(e,t={}){return this._get("removeAndTransfer",null,e,t)}async getUngranted(e={}){return this._get("ungranted",null,null,e)}}class zs extends a{constructor(){super("app-org")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e={}){return this._get("info",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async postTransferAndDelete(e,t={}){return this._post("transferAndDelete",e,null,t)}async postUser(e,t={}){return this._post("user",e,null,t)}async getUser(e,t={}){return this._get("user",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class qs extends a{constructor(){super("app-publish-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Js extends a{constructor(){super("app-state")}async getDraft(e={}){return this._get("draft",null,null,e)}}class Qs extends a{constructor(){super("app-user")}async post(e,t={}){return this._post("",e,null,t)}async putDisable(e,t={}){return this._put("disable",null,e,t)}async putEnable(e,t={}){return this._put("enable",null,e,t)}async getInfo(e={}){return this._get("info",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async postRemove(e,t={}){return this._post("remove",e,null,t)}async postReset(e,t={}){return this._post("reset",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Zs extends a{constructor(){super("approval-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}let Ys=class extends a{constructor(){super("audit-log")}async postExport(e,t={}){return this._post("export",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getModules(e={}){return this._get("modules",null,null,e)}async getOperateTypes(e,t={}){return this._get("operateTypes",null,e,t)}async getOperators(e={}){return this._get("operators",null,null,e)}async postPage(e,t={}){return this._post("page",e,null,t)}async postSave(e,t={}){return this._post("save",e,null,t)}};class er extends a{constructor(){super("basic-config")}async post(e,t={}){return this._post("",e,null,t)}async getDetail(e,t={}){return this._get("detail",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async postTheme(e,t={}){return this._post("theme",e,null,t)}async putKey(e,t={}){return this._put("{key}",e,null,t)}}class tr extends a{constructor(){super("biz-event")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class nr extends a{constructor(){super("biz-process-definition")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async deleteDeleteCategory(e,t={}){return this._delete("deleteCategory",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class sr extends a{constructor(){super("biz-process-definition-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCopy(e={}){return this._post("copy",null,null,e)}async postDeploy(e,t={}){return this._post("deploy",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async postSave(e,t={}){return this._post("save",e,null,t)}async postSaveAndDeploy(e,t={}){return this._post("saveAndDeploy",e,null,t)}async getId(e,t={}){return this._get("",null,e,t)}}class rr extends a{constructor(){super("biz-service-crud")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getDataModel(e={}){return this._get("data-model",null,null,e)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getViewModel(e,t={}){return this._get("view-model",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class lr extends a{constructor(){super("biz-service")}async getModelKey(e,t={}){return this._get("{modelKey}",null,e,t)}async postModelKey(e,t={}){return this._post("{modelKey}",null,e,t)}async putModelKey(e,t={}){return this._put("{modelKey}",null,e,t)}async deleteModelKey(e,t={}){return this._delete("{modelKey}",null,e,t)}}class ir extends a{constructor(){super("bom")}async postImport(e={}){return this._post("import",null,null,e)}}let ar=class extends a{constructor(){super("category")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getGetListRdoOrNdo(e,t={}){return this._get("getListRdoOrNdo",null,e,t)}async getInfo(e={}){return this._get("info",null,null,e)}async getList(e,t={}){return this._get("list",null,e,t)}async getListComplete(e,t={}){return this._get("listComplete",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}};class ur extends a{constructor(){super("category-relation")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e={}){return this._get("info",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class or extends a{constructor(){super("code-ts")}async getList(e={}){return this._get("list",null,null,e)}}class cr extends a{constructor(){super("commit-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getCanPublishProdReleaseTagList(e={}){return this._get("canPublishProdReleaseTagList",null,null,e)}async getCanReleaseTagList(e={}){return this._get("canReleaseTagList",null,null,e)}async postCommit(e,t={}){return this._post("commit",e,null,t)}async getGetLatestCommit(e={}){return this._get("getLatestCommit",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async getRelease(e,t={}){return this._get("release",null,e,t)}async getViewDetail(e,t={}){return this._get("viewDetail",null,e,t)}async getViewDraft(e={}){return this._get("viewDraft",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class gr extends a{constructor(){super("data-model")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getBizService(e,t={}){return this._get("biz-service",null,e,t)}async postBizService(e,t={}){return this._post("biz-service",null,e,t)}async putBizService(e,t={}){return this._put("biz-service",null,e,t)}async deleteBizService(e,t={}){return this._delete("biz-service",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class pr extends a{constructor(){super("designer-common")}async getEnumModelField(e,t={}){return this._get("enumModelField",null,e,t)}async getGetApp(e={}){return this._get("getApp",null,null,e)}async getGetCanBeUsedOrg(e={}){return this._get("getCanBeUsedOrg",null,null,e)}async getGetCanBeUsedOrgUser(e,t={}){return this._get("getCanBeUsedOrgUser",null,e,t)}async getGetUserGroupUser(e,t={}){return this._get("getUserGroupUser",null,e,t)}async getGetVisibleOrg(e={}){return this._get("getVisibleOrg",null,null,e)}async getGetVisibleOrgUser(e,t={}){return this._get("getVisibleOrgUser",null,e,t)}async getGetVisibleUser(e={}){return this._get("getVisibleUser",null,null,e)}async getGetVisibleUserAndVisibleOrgUser(e,t={}){return this._get("getVisibleUserAndVisibleOrgUser",null,e,t)}async getListUserByIds(e,t={}){return this._get("listUserByIds",null,e,t)}async getTableEntityModel(e,t={}){return this._get("table-entity-model",null,e,t)}async postUpload(e={}){return this._post("upload",null,null,e)}async getUser(e={}){return this._get("user",null,null,e)}}class hr extends a{constructor(){super("designer-lock")}async postCancelOccupyPage(e,t={}){return this._post("cancelOccupyPage",e,null,t)}async getGetPageOccupyMsg(e,t={}){return this._get("getPageOccupyMsg",null,e,t)}async postLockPage(e,t={}){return this._post("lockPage",e,null,t)}async postOccupyPage(e,t={}){return this._post("occupyPage",e,null,t)}async postUnLockPage(e,t={}){return this._post("unLockPage",e,null,t)}}class dr extends a{constructor(){super("designer-operate-log")}async getPage(e,t={}){return this._get("page",null,e,t)}}class yr extends a{constructor(){super("devops")}async getListAllDigitsFields(e={}){return this._get("listAllDigitsFields",null,null,e)}async postUpdateDigits(e,t={}){return this._post("updateDigits",e,null,t)}}class _r extends a{constructor(){super("doc-outline")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getListByInstance(e,t={}){return this._get("listByInstance",null,e,t)}async getListByRefId(e,t={}){return this._get("listByRefId",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getSheet(e,t={}){return this._get("sheet",null,e,t)}async getSheetByInstance(e,t={}){return this._get("sheetByInstance",null,e,t)}async getSheetByRefId(e,t={}){return this._get("sheetByRefId",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class fr extends a{constructor(){super("document")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCopyVersion(e,t={}){return this._post("copyVersion",e,null,t)}async putDesign(e,t={}){return this._put("design",e,null,t)}async getDocumentDataClean(e={}){return this._get("documentDataClean",null,null,e)}async getGetVersionById(e,t={}){return this._get("getVersionById",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getListVersionById(e,t={}){return this._get("listVersionById",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async deleteRemoveVersionById(e,t={}){return this._delete("removeVersionById",null,e,t)}async postSaveVersion(e,t={}){return this._post("saveVersion",e,null,t)}async putUpdateVersionById(e,t={}){return this._put("updateVersionById",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ir extends a{constructor(){super("edhr-instance")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getFindByMaterialNo(e,t={}){return this._get("findByMaterialNo",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getReverse(e,t={}){return this._get("reverse",null,e,t)}async putUpdateInstanceStatusById4Archived(e={}){return this._put("updateInstanceStatusById4Archived",null,null,e)}}class vr extends a{constructor(){super("edhr-instance-relation")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getListChild(e,t={}){return this._get("listChild",null,e,t)}}class Sr extends a{constructor(){super("edhr-tmpl")}async postCopy(e={}){return this._post("copy",null,null,e)}async postCopyVersion(e,t={}){return this._post("copyVersion",e,null,t)}async getGetVersionById(e,t={}){return this._get("getVersionById",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getListVersionById(e,t={}){return this._get("listVersionById",null,e,t)}async deleteRemoveById(e,t={}){return this._delete("removeById",null,e,t)}async deleteRemoveVersionById(e,t={}){return this._delete("removeVersionById",null,e,t)}async postSave(e,t={}){return this._post("save",e,null,t)}async postSaveVersion(e,t={}){return this._post("saveVersion",e,null,t)}async putUpdateVersionById(e,t={}){return this._put("updateVersionById",e,null,t)}}class Ar extends a{constructor(){super("ele-search")}async getSearchByKey(e,t={}){return this._get("searchByKey",null,e,t)}}class Lr extends a{constructor(){super("enum-model")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e={}){return this._get("info",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putUpdateIconState(e,t={}){return this._put("updateIconState",e,null,t)}async putUpdateTextState(e,t={}){return this._put("updateTextState",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class mr extends a{constructor(){super("enum-model-field")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e={}){return this._get("info",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Tr extends a{constructor(){super("event")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Rr extends a{constructor(){super("event-log")}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}}class br extends a{constructor(){super("excel-tmpl")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postConfig(e,t={}){return this._post("config",e,null,t)}async getDetail(e,t={}){return this._get("detail",null,e,t)}async getDownload(e={}){return this._get("download",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getInit(e,t={}){return this._get("init",null,e,t)}async postInit(e,t,s={}){return this._post("init",t,e,s)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async postV1(e,t={}){return this._post("v1",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Er extends a{constructor(){super("excel")}async getData(e,t={}){return this._get("data",null,e,t)}async postData(e,t={}){return this._post("data",null,e,t)}}class Or extends a{constructor(){super("field-meta")}async delete(e,t={}){return this._delete("",null,e,t)}async postComplete(e={}){return this._post("complete",null,null,e)}async putDecimal(e={}){return this._put("decimal",null,null,e)}async postFunc(e,t={}){return this._post("func",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getListConditionField(e,t={}){return this._get("listConditionField",null,e,t)}async postMove(e,t={}){return this._post("move",e,null,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putPage(e={}){return this._put("page",null,null,e)}async postPreview(e,t={}){return this._post("preview",e,null,t)}async postSave(e,t={}){return this._post("save",e,null,t)}async putUnique(e={}){return this._put("unique",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Dr extends a{constructor(){super("field")}async deleteRemove(e,t={}){return this._delete("remove",null,e,t)}}class Nr extends a{constructor(){super("file-resource")}async postBase64Upload(e,t={}){return this._post("base64Upload",e,null,t)}async postList(e,t={}){return this._post("list",e,null,t)}async postUpload(e,t={}){return this._post("upload",null,e,t)}}let Mr=class extends a{constructor(){super("file")}async postUpload(e,t={}){return this._post("upload",null,e,t)}};class wr extends a{constructor(){super("formRelate")}async getCategory(e,t={}){return this._get("category",null,e,t)}async postCategory(e,t={}){return this._post("category",e,null,t)}async deleteCategory(e,t={}){return this._delete("category",null,e,t)}async putCategory(e,t={}){return this._put("category",e,null,t)}async deleteDeleteCategory(e,t={}){return this._delete("deleteCategory",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getListAllCategory(e,t={}){return this._get("listAllCategory",null,e,t)}async getListAllVersion(e,t={}){return this._get("listAllVersion",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}}class xr extends a{constructor(){super("front-operate-log")}async getPage(e,t={}){return this._get("page",null,e,t)}}class Pr extends a{constructor(){super("global-method")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}let Cr=class extends a{constructor(){super("i18n-info")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getLang(e,t={}){return this._get("lang",null,e,t)}async postLang(e,t={}){return this._post("lang",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putKey(e,t={}){return this._put("{key}",e,null,t)}};class Ur extends a{constructor(){super("job")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCron(e,t={}){return this._post("cron",e,null,t)}async postExec(e,t={}){return this._post("exec",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putStatus(e,t={}){return this._put("status",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Br extends a{constructor(){super("job-log")}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}}class kr extends a{constructor(){super("js-engine")}async getExec(e,t={}){return this._get("exec",null,e,t)}async postExecute(e,t={}){return this._post("execute",e,null,t)}}class Gr extends a{constructor(){super("label")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCopyVersion(e,t={}){return this._post("copyVersion",e,null,t)}async getExport(e,t={}){return this._get("export",null,e,t)}async getGetVersionById(e,t={}){return this._get("getVersionById",null,e,t)}async postImport(e={}){return this._post("import",null,null,e)}async postLabelDuplicateNameCheck(e,t={}){return this._post("labelDuplicateNameCheck",e,null,t)}async getLabelParentDataClean(e={}){return this._get("labelParentDataClean",null,null,e)}async getList(e,t={}){return this._get("list",null,e,t)}async getListFont(e={}){return this._get("listFont",null,null,e)}async getListVersionById(e,t={}){return this._get("listVersionById",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async deleteRemoveVersionById(e,t={}){return this._delete("removeVersionById",null,e,t)}async postSaveVersion(e,t={}){return this._post("saveVersion",e,null,t)}async getTest(e,t={}){return this._get("test",null,e,t)}async putUpdateDesigner(e,t={}){return this._put("updateDesigner",e,null,t)}async putUpdateVersionById(e,t={}){return this._put("updateVersionById",e,null,t)}async postXmlSetting(e,t={}){return this._post("xmlSetting",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Vr extends a{constructor(){super("label-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Kr extends a{constructor(){super("medPro")}async postModelMeta(e,t={}){return this._post("modelMeta",e,null,t)}async getModelMeta(e,t={}){return this._get("modelMeta",null,e,t)}}class Xr extends a{constructor(){super("menu-config")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getAvailable(e,t={}){return this._get("available",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async postMove(e,t={}){return this._post("move",e,null,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Hr extends a{constructor(){super("merge-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Fr extends a{constructor(){super("message-record")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}}let Wr=class extends a{constructor(){super("message-setting")}async getFindAllByType(e,t={}){return this._get("findAllByType",null,e,t)}async postSendMessageByType(e,t={}){return this._post("sendMessageByType",e,null,t)}};class $r extends a{constructor(){super("message-tmpl")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getListByModelKey(e,t={}){return this._get("listByModelKey",null,e,t)}async putOpened(e,t={}){return this._put("opened",e,null,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async postProcessSend(e,t={}){return this._post("processSend",e,null,t)}async postSend(e,t={}){return this._post("send",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class jr extends a{constructor(){super("mobile-homepage")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetSelected(e={}){return this._get("getSelected",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async postSelect(e,t={}){return this._post("select",e,null,t)}async putUpdateDesignerJson(e,t={}){return this._put("updateDesignerJson",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class zr extends a{constructor(){super("mobile-page")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCopyById(e,t={}){return this._post("copyById",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putUpdateDesignerJson(e,t={}){return this._put("updateDesignerJson",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class qr extends a{constructor(){super("model-comprehensive")}async deleteBizServiceApi(e,t={}){return this._delete("biz-service-api",null,e,t)}async getBizServiceApi(e,t={}){return this._get("biz-service-api",null,e,t)}async putBizServiceApi(e,t={}){return this._put("biz-service-api",e,null,t)}async postBizServiceApi(e,t={}){return this._post("biz-service-api",e,null,t)}async postBizService(e,t={}){return this._post("biz-service",null,e,t)}async getBizService(e,t={}){return this._get("biz-service",null,e,t)}async putBizService(e,t={}){return this._put("biz-service",null,e,t)}async deleteBizService(e,t={}){return this._delete("biz-service",null,e,t)}async getEnum(e,t={}){return this._get("enum",null,e,t)}async postExport(e,t={}){return this._post("export",null,e,t)}async getField(e,t={}){return this._get("field",null,e,t)}async getMethod(e,t={}){return this._get("method",null,e,t)}async getModel(e,t={}){return this._get("model",null,e,t)}async postQueryAllModelDataAndDrillData(e,t={}){return this._post("queryAllModelDataAndDrillData",e,null,t)}async postQueryFieldValueByRefChainData(e,t={}){return this._post("queryFieldValueByRefChainData",e,null,t)}async postQueryModelDataAndDrillData(e,t={}){return this._post("queryModelDataAndDrillData",e,null,t)}async postQueryRefChainData(e,t={}){return this._post("queryRefChainData",e,null,t)}async postQueryRefData(e,t={}){return this._post("queryRefData",e,null,t)}async postQueryRefDataById(e,t={}){return this._post("queryRefDataById",e,null,t)}async postQueryRefDataByIds(e,t={}){return this._post("queryRefDataByIds",e,null,t)}async postQuerySearchRefChainData(e,t={}){return this._post("querySearchRefChainData",e,null,t)}async getSubModel(e,t={}){return this._get("sub-model",null,e,t)}}class Jr extends a{constructor(){super("model-data")}async postAllModelLiquibaseSoftDeleteDataClean(e={}){return this._post("allModelLiquibaseSoftDeleteDataClean",null,null,e)}async postAllModelSoftDeleteDataClean(e={}){return this._post("allModelSoftDeleteDataClean",null,null,e)}async getCheckFieldValueExist(e,t={}){return this._get("checkFieldValueExist",null,e,t)}async postQueryRefData(e,t={}){return this._post("queryRefData",e,null,t)}async postSingleModelSoftDeleteDataClean(e,t={}){return this._post("singleModelSoftDeleteDataClean",null,e,t)}}class Qr extends a{constructor(){super("model-meta")}async delete(e,t={}){return this._delete("",null,e,t)}async getAgg(e,t={}){return this._get("agg",null,e,t)}async getBy(e,t={}){return this._get("by",null,e,t)}async putConstant(e,t={}){return this._put("constant",e,null,t)}async getDetail(e,t={}){return this._get("detail",null,e,t)}async putDisplay(e={}){return this._put("display",null,null,e)}async getEr(e={}){return this._get("er",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getListAll(e={}){return this._get("list-all",null,null,e)}async getListAllModelAndFieldByName(e,t={}){return this._get("listAllModelAndFieldByName",null,e,t)}async getListMasterModel(e,t={}){return this._get("listMasterModel",null,e,t)}async getListModelReferencedBy(e,t={}){return this._get("listModelReferencedBy",null,e,t)}async getListSlaveModel(e,t={}){return this._get("listSlaveModel",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putPage(e={}){return this._put("page",null,null,e)}async getPermissionEnabled(e,t={}){return this._get("permission-enabled",null,e,t)}async postSave(e,t={}){return this._post("save",e,null,t)}async putSupportMessage(e={}){return this._put("support-message",null,null,e)}async getSupportProcess(e={}){return this._get("support-process",null,null,e)}async getTranslateModelFieldExp(e,t={}){return this._get("translateModelFieldExp",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}async putModelKey(e={}){return this._put("{modelKey}",null,null,e)}}class Zr extends a{constructor(){super("model-method")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getDataModel(e={}){return this._get("data-model",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getViewModel(e={}){return this._get("view-model",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Yr extends a{constructor(){super("model")}async deleteRemove(e,t={}){return this._delete("remove",null,e,t)}}class el extends a{constructor(){super("online-form-change-history")}async postInsertBatch(e,t={}){return this._post("insertBatch",e,null,t)}async getList(e,t={}){return this._get("list",null,e,t)}}class tl extends a{constructor(){super("online-form-instance")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getDataIds(e,t={}){return this._get("dataIds",null,e,t)}async getFindByOfTmplIdAndEdhrInstanceId(e,t={}){return this._get("findByOfTmplIdAndEdhrInstanceId",null,e,t)}async getFindOfTaskBySerialNo4Change(e,t={}){return this._get("findOfTaskBySerialNo4Change",null,e,t)}async getFindRelationInfoById(e,t={}){return this._get("findRelationInfoById",null,e,t)}async getGetRelatedProduct(e,t={}){return this._get("getRelatedProduct",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async postInfos(e={}){return this._post("infos",null,null,e)}async postInsert4Edhr(e,t={}){return this._post("insert4Edhr",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async getTask(e,t={}){return this._get("task",null,e,t)}async postTask(e,t={}){return this._post("task",e,null,t)}async putTask(e,t={}){return this._put("task",e,null,t)}}class nl extends a{constructor(){super("online-form-log")}async getList(e,t={}){return this._get("list",null,e,t)}}class sl extends a{constructor(){super("online-form-tmpl-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class rl extends a{constructor(){super("online-form-tmpl")}async postCopy(e={}){return this._post("copy",null,null,e)}async postCopyVersion(e,t={}){return this._post("copyVersion",e,null,t)}async getGetVersionById(e,t={}){return this._get("getVersionById",null,e,t)}async postInfos(e,t={}){return this._post("infos",e,null,t)}async getListVersionById(e,t={}){return this._get("listVersionById",null,e,t)}async getModel(e={}){return this._get("model",null,null,e)}async postRelease(e,t,s={}){return this._post("release",t,e,s)}async deleteRemoveById(e,t={}){return this._delete("removeById",null,e,t)}async deleteRemoveVersionById(e,t={}){return this._delete("removeVersionById",null,e,t)}async postSave(e,t={}){return this._post("save",e,null,t)}async postSaveField(e,t={}){return this._post("saveField",e,null,t)}async postSaveOperation(e,t={}){return this._post("saveOperation",e,null,t)}async postSaveVersion(e,t={}){return this._post("saveVersion",e,null,t)}async getStash(e,t={}){return this._get("stash",null,e,t)}async putStash(e,t={}){return this._put("stash",e,null,t)}async putUpdateDesigner(e,t={}){return this._put("updateDesigner",e,null,t)}async putUpdateVersionById(e,t={}){return this._put("updateVersionById",e,null,t)}}class ll extends a{constructor(){super("online-form")}async postBase(e,t={}){return this._post("base",e,null,t)}async postBiz(e,t={}){return this._post("biz",e,null,t)}async postProcess(e,t={}){return this._post("process",e,null,t)}async postStash(e,t={}){return this._post("stash",e,null,t)}}class il extends a{constructor(){super("online")}async getClients(e,t={}){return this._get("clients",null,e,t)}async getExit(e,t={}){return this._get("exit",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}}class al extends a{constructor(){super("openapi")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetApiInfo(e,t={}){return this._get("getApiInfo",null,e,t)}async getGetApiInfos(e={}){return this._get("getApiInfos",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ul extends a{constructor(){super("page-designer-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}let ol=class extends a{constructor(){super("permission")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}};class cl extends a{constructor(){super("pm-process-definition")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getListAllProcHasPublishedVersion(e,t={}){return this._get("listAllProcHasPublishedVersion",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class gl extends a{constructor(){super("pm-process-definition-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCopy(e={}){return this._post("copy",null,null,e)}async postDeploy(e,t={}){return this._post("deploy",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async postSave(e,t={}){return this._post("save",e,null,t)}async postSaveAndDeploy(e,t={}){return this._post("saveAndDeploy",e,null,t)}async postUpdateProcessUser(e,t={}){return this._post("updateProcessUser",e,null,t)}async getId(e,t={}){return this._get("",null,e,t)}}class pl extends a{constructor(){super("pm-process-engine")}async postApprove(e,t={}){return this._post("approve",e,null,t)}async getHiTask(e,t={}){return this._get("hi-task",null,e,t)}async getInitialTask(e,t={}){return this._get("initial-task",null,e,t)}async getListAllAssignees(e={}){return this._get("listAllAssignees",null,null,e)}async getListAllInitiators(e={}){return this._get("listAllInitiators",null,null,e)}async getModel(e,t={}){return this._get("model",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async postProcExecute(e,t={}){return this._post("procExecute",e,null,t)}async getProcInstExtension(e,t={}){return this._get("procInstExtension",null,e,t)}async postReassign(e,t={}){return this._post("reassign",e,null,t)}async postRefuse(e,t={}){return this._post("refuse",e,null,t)}async postReject(e,t={}){return this._post("reject",e,null,t)}async postResubmit(e,t={}){return this._post("resubmit",e,null,t)}async postStartProcInst(e,t={}){return this._post("startProcInst",e,null,t)}async getTask(e,t={}){return this._get("task",null,e,t)}async postTerminate(e,t={}){return this._post("terminate",e,null,t)}async postWithdraw(e,t={}){return this._post("withdraw",e,null,t)}}class hl extends a{constructor(){super("print-designer")}async deleteCategory(e,t={}){return this._delete("category",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getListAllVersion(e,t={}){return this._get("listAllVersion",null,e,t)}async getRdo(e,t={}){return this._get("rdo",null,e,t)}}let dl=class extends a{constructor(){super("print-log")}async postPage(e,t={}){return this._post("page",e,null,t)}async postPatchwork(e,t={}){return this._post("patchwork",e,null,t)}};class yl extends a{constructor(){super("print")}async postGenerateZplCode(e,t={}){return this._post("generateZplCode",e,null,t)}async postLabelBackEndPrint(e,t={}){return this._post("labelBackEndPrint",e,null,t)}async getPrintDropdownList(e={}){return this._get("printDropdownList",null,null,e)}async postSendPrintData(e,t={}){return this._post("sendPrintData",e,null,t)}}class _l extends a{constructor(){super("process")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class fl extends a{constructor(){super("process-approval-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getApproveHistory(e,t={}){return this._get("approveHistory",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Il extends a{constructor(){super("process-approve-user")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class vl extends a{constructor(){super("process-definition")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Sl extends a{constructor(){super("process-definition-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCopy(e={}){return this._post("copy",null,null,e)}async getFindByOfInstanceId(e={}){return this._get("findByOfInstanceId",null,null,e)}async getList(e,t={}){return this._get("list",null,e,t)}async postPublish(e={}){return this._post("publish",null,null,e)}async getId(e,t={}){return this._get("",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Al extends a{constructor(){super("process-engine")}async postExecute(e,t={}){return this._post("execute",e,null,t)}async getHiTask(e,t={}){return this._get("hi-task",null,e,t)}async getInitialTask(e,t={}){return this._get("initial-task",null,e,t)}async getModel(e,t={}){return this._get("model",null,e,t)}async postReassignment(e,t={}){return this._post("reassignment",e,null,t)}async getTask(e,t={}){return this._get("task",null,e,t)}}class Ll extends a{constructor(){super("process-event")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ml extends a{constructor(){super("process-graph")}async getGraphInfo(e,t={}){return this._get("graphInfo",null,e,t)}}class Tl extends a{constructor(){super("process-instance")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Rl extends a{constructor(){super("process-message-user")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class bl extends a{constructor(){super("process-node-definition")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class El extends a{constructor(){super("process-path-user")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ol extends a{constructor(){super("process-path")}async getFindAllByOfInstanceId(e,t={}){return this._get("findAllByOfInstanceId",null,e,t)}}class Dl extends a{constructor(){super("process-task-done")}async getPage(e,t={}){return this._get("page",null,e,t)}}class Nl extends a{constructor(){super("process-task-todo")}async getAllUser(e,t={}){return this._get("all-user",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}}class Ml extends a{constructor(){super("process-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postActivate(e={}){return this._post("activate",null,null,e)}async putDeploy(e,t={}){return this._put("deploy",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}}class wl extends a{constructor(){super("processTest")}async getCompleteTask(e,t={}){return this._get("completeTask",null,e,t)}async getDeploy(e,t={}){return this._get("deploy",null,e,t)}async getReadXml(e,t={}){return this._get("readXml",null,e,t)}async getSignal(e,t={}){return this._get("signal",null,e,t)}async getStart(e,t={}){return this._get("start",null,e,t)}async getUpdateVar(e,t={}){return this._get("updateVar",null,e,t)}async getWithdraw(e,t={}){return this._get("withdraw",null,e,t)}}class xl extends a{constructor(){super("product-release")}async getGetProductReleaseByMaterialNo(e,t={}){return this._get("getProductReleaseByMaterialNo",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}}class Pl extends a{constructor(){super("publish-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCreateRelease(e,t={}){return this._post("createRelease",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async postPublishToProd(e,t={}){return this._post("publishToProd",e,null,t)}async postPublishToTest(e,t={}){return this._post("publishToTest",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}let Cl=class extends a{constructor(){super("regexp")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}},Ul=class extends a{constructor(){super("role")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t={}){return this._put("",null,e,t)}},Bl=class extends a{constructor(){super("role-permission")}async post(e,t={}){return this._post("",e,null,t)}async postBulk(e,t={}){return this._post("bulk",e,null,t)}async getMenu(e,t={}){return this._get("menu",null,e,t)}async postRemove(e,t={}){return this._post("remove",e,null,t)}};class kl extends a{constructor(){super("script")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getInfoByKey(e,t={}){return this._get("infoByKey",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Gl extends a{constructor(){super("script-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putSetVersionActive(e,t={}){return this._put("setVersionActive",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Vl extends a{constructor(){super("script-version-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}}class Kl extends a{constructor(){super("service-orchestration")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getInfoByKey(e,t={}){return this._get("infoByKey",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Xl extends a{constructor(){super("service-orchestration-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putSetVersionActive(e,t={}){return this._put("setVersionActive",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Hl extends a{constructor(){super("service-orchestration-version-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}}class Fl extends a{constructor(){super("sign-history")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Wl extends a{constructor(){super("signature")}async postGetSignatureImage(e,t={}){return this._post("getSignatureImage",e,null,t)}}class $l extends a{constructor(){super("sql-view-model")}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class jl extends a{constructor(){super("sql-view")}async postBizService(e,t={}){return this._post("biz-service",null,e,t)}}class zl extends a{constructor(){super("stash")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getFindByClientKey(e,t={}){return this._get("findByClientKey",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ql extends a{constructor(){super("sub-model-process")}async postAllSubModelDataClean(e={}){return this._post("allSubModelDataClean",null,null,e)}}class Jl extends a{constructor(){super("sys-config")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ql extends a{constructor(){super("system-var")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetSystemVarByKeys(e,t={}){return this._get("getSystemVarByKeys",null,e,t)}async getGetVarByKeys(e,t={}){return this._get("getVarByKeys",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getListSystemVarCache(e={}){return this._get("listSystemVarCache",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Zl extends a{constructor(){super("trace-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getFindByTraceId(e,t={}){return this._get("findByTraceId",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Yl extends a{constructor(){super("trace-log-details")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getInfoTree(e,t={}){return this._get("infoTree",null,e,t)}async getInfoTreeById(e,t={}){return this._get("infoTreeById",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ei extends a{constructor(){super("trace-mainline")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ti extends a{constructor(){super("trace-mainline-ext")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ni extends a{constructor(){super("trace-setting")}async delete(e,t={}){return this._delete("",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getTreeByModelKey(e,t={}){return this._get("treeByModelKey",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class si extends a{constructor(){super("user-group")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getSearch(e,t={}){return this._get("search",null,e,t)}async getUser(e={}){return this._get("user",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ri extends a{constructor(){super("user-group-relation")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postBatch(e,t={}){return this._post("batch",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class li extends a{constructor(){super("view-model")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getBizService(e,t={}){return this._get("biz-service",null,e,t)}async postBizService(e,t={}){return this._post("biz-service",null,e,t)}async putBizService(e,t={}){return this._put("biz-service",null,e,t)}async deleteBizService(e,t={}){return this._delete("biz-service",null,e,t)}async getField(e,t={}){return this._get("field",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async getSql(e,t={}){return this._get("sql",null,e,t)}async putSupportMessage(e={}){return this._put("support-message",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ii extends a{constructor(){super("wash")}async getWashDictLabelField(e={}){return this._get("washDictLabelField",null,null,e)}async getWashEdhrAndOfInst(e={}){return this._get("washEdhrAndOfInst",null,null,e)}}class ai extends a{constructor(){super("webpage")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCancelOccupyWebPage(e,t={}){return this._post("cancelOccupyWebPage",e,null,t)}async postCopyById(e,t={}){return this._post("copyById",e,null,t)}async postGetWebPageOccupyMsg(e,t={}){return this._post("getWebPageOccupyMsg",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async postLockWebPage(e,t={}){return this._post("lockWebPage",e,null,t)}async postOccupyWebPage(e,t={}){return this._post("occupyWebPage",e,null,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async postUnLockWebPage(e,t={}){return this._post("unLockWebPage",e,null,t)}async putUpdateDesignerJson(e,t={}){return this._put("updateDesignerJson",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}let ui=class extends a{constructor(){super("api")}async postApp(e,t,s={}){return this._post("app",t,e,s)}async getApp(e,t={}){return this._get("app",null,e,t)}async deleteApp(e,t={}){return this._delete("app",null,e,t)}async postAuditLog(e,t={}){return this._post("audit-log",e,null,t)}async getAuditLog(e,t={}){return this._get("audit-log",null,e,t)}async postEdhr(e,t={}){return this._post("edhr",e,null,t)}async getIe(e,t={}){return this._get("ie",null,e,t)}async getModelComprehensive(e,t={}){return this._get("model-comprehensive",null,e,t)}async postModelComprehensive(e,t={}){return this._post("model-comprehensive",null,e,t)}async putModelComprehensive(e,t={}){return this._put("model-comprehensive",null,e,t)}async deleteModelComprehensive(e,t={}){return this._delete("model-comprehensive",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}},oi=class{constructor(){r(this,"appBranch",new Ws);r(this,"appGlobalSettings",new $s);r(this,"appGrantedUser",new js);r(this,"appOrg",new zs);r(this,"appPublishLog",new qs);r(this,"appState",new Js);r(this,"appUser",new Qs);r(this,"approvalLog",new Zs);r(this,"auditLog",new Ys);r(this,"basicConfig",new er);r(this,"bizEvent",new tr);r(this,"bizProcessDefinition",new nr);r(this,"bizProcessDefinitionVersion",new sr);r(this,"bizServiceCrud",new rr);r(this,"bizService",new lr);r(this,"bom",new ir);r(this,"category",new ar);r(this,"categoryRelation",new ur);r(this,"codeTs",new or);r(this,"commitLog",new cr);r(this,"dataModel",new gr);r(this,"designerCommon",new pr);r(this,"designerLock",new hr);r(this,"designerOperateLog",new dr);r(this,"devops",new yr);r(this,"docOutline",new _r);r(this,"document",new fr);r(this,"edhrInstance",new Ir);r(this,"edhrInstanceRelation",new vr);r(this,"edhrTmpl",new Sr);r(this,"eleSearch",new Ar);r(this,"enumModel",new Lr);r(this,"enumModelField",new mr);r(this,"event",new Tr);r(this,"eventLog",new Rr);r(this,"excelTmpl",new br);r(this,"excel",new Er);r(this,"fieldMeta",new Or);r(this,"field",new Dr);r(this,"fileResource",new Nr);r(this,"file",new Mr);r(this,"formRelate",new wr);r(this,"frontOperateLog",new xr);r(this,"globalMethod",new Pr);r(this,"i18NInfo",new Cr);r(this,"job",new Ur);r(this,"jobLog",new Br);r(this,"jsEngine",new kr);r(this,"label",new Gr);r(this,"labelLog",new Vr);r(this,"medPro",new Kr);r(this,"menuConfig",new Xr);r(this,"mergeLog",new Hr);r(this,"messageRecord",new Fr);r(this,"messageSetting",new Wr);r(this,"messageTmpl",new $r);r(this,"mobileHomepage",new jr);r(this,"mobilePage",new zr);r(this,"modelComprehensive",new qr);r(this,"modelData",new Jr);r(this,"modelMeta",new Qr);r(this,"modelMethod",new Zr);r(this,"model",new Yr);r(this,"onlineFormChangeHistory",new el);r(this,"onlineFormInstance",new tl);r(this,"onlineFormLog",new nl);r(this,"onlineFormTmplLog",new sl);r(this,"onlineFormTmpl",new rl);r(this,"onlineForm",new ll);r(this,"online",new il);r(this,"openapi",new al);r(this,"pageDesignerLog",new ul);r(this,"permission",new ol);r(this,"pmProcessDefinition",new cl);r(this,"pmProcessDefinitionVersion",new gl);r(this,"pmProcessEngine",new pl);r(this,"printDesigner",new hl);r(this,"printLog",new dl);r(this,"print",new yl);r(this,"process",new _l);r(this,"processApprovalLog",new fl);r(this,"processApproveUser",new Il);r(this,"processDefinition",new vl);r(this,"processDefinitionVersion",new Sl);r(this,"processEngine",new Al);r(this,"processEvent",new Ll);r(this,"processGraph",new ml);r(this,"processInstance",new Tl);r(this,"processMessageUser",new Rl);r(this,"processNodeDefinition",new bl);r(this,"processPathUser",new El);r(this,"processPath",new Ol);r(this,"processTaskDone",new Dl);r(this,"processTaskTodo",new Nl);r(this,"processVersion",new Ml);r(this,"processTest",new wl);r(this,"productRelease",new xl);r(this,"publishLog",new Pl);r(this,"regexp",new Cl);r(this,"role",new Ul);r(this,"rolePermission",new Bl);r(this,"script",new kl);r(this,"scriptVersion",new Gl);r(this,"scriptVersionLog",new Vl);r(this,"serviceOrchestration",new Kl);r(this,"serviceOrchestrationVersion",new Xl);r(this,"serviceOrchestrationVersionLog",new Hl);r(this,"signHistory",new Fl);r(this,"signature",new Wl);r(this,"sqlViewModel",new $l);r(this,"sqlView",new jl);r(this,"stash",new zl);r(this,"subModelProcess",new ql);r(this,"sysConfig",new Jl);r(this,"systemVar",new Ql);r(this,"traceLog",new Zl);r(this,"traceLogDetails",new Yl);r(this,"traceMainline",new ei);r(this,"traceMainlineExt",new ti);r(this,"traceSetting",new ni);r(this,"userGroup",new si);r(this,"userGroupRelation",new ri);r(this,"viewModel",new li);r(this,"wash",new ii);r(this,"webpage",new ai);r(this,"api",new ui)}};class c extends Cn{constructor(e){super(D.join("/gct-platform/api",e))}}class ci extends c{constructor(){super("apk")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetActiveApp(e={}){return this._get("getActiveApp",null,null,e)}async getGetIp(e={}){return this._get("getIp",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async postUpload(e={}){return this._post("upload",null,null,e)}async putId(e,t={}){return this._put("",null,e,t)}}class gi extends c{constructor(){super("app")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async putAppCleanUp(e={}){return this._put("appCleanUp",null,null,e)}async putAppRestore(e={}){return this._put("appRestore",null,null,e)}async getCheckAppMaintainerInTenant(e={}){return this._get("checkAppMaintainerInTenant",null,null,e)}async postCreateBranch(e,t={}){return this._post("createBranch",e,null,t)}async putDisable(e={}){return this._put("disable",null,null,e)}async putEnable(e={}){return this._put("enable",null,null,e)}async getFieldMeta(e,t={}){return this._get("field-meta",null,e,t)}async getGetAppCount(e={}){return this._get("getAppCount",null,null,e)}async getGetCurrentBranch(e={}){return this._get("getCurrentBranch",null,null,e)}async getGetLatestCommit(e,t={}){return this._get("getLatestCommit",null,e,t)}async getGetMobileDbFileUrl(e={}){return this._get("getMobileDbFileUrl",null,null,e)}async postImportVersion(e,t={}){return this._post("importVersion",e,null,t)}async getImportVersionPreview(e,t={}){return this._get("importVersionPreview",null,e,t)}async getInfo(e={}){return this._get("info",null,null,e)}async getList(e={}){return this._get("list",null,null,e)}async getListBranch(e={}){return this._get("listBranch",null,null,e)}async getMerge(e,t={}){return this._get("merge",null,e,t)}async postMerge(e,t={}){return this._post("merge",e,null,t)}async getMergePreview(e,t={}){return this._get("mergePreview",null,e,t)}async getModelMeta(e,t={}){return this._get("model-meta",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getPublishLogInfo(e,t={}){return this._get("publishLogInfo",null,e,t)}async getPublishLogPageList(e,t={}){return this._get("publishLogPageList",null,e,t)}async postRevert(e,t={}){return this._post("revert",e,null,t)}async postSwitchBranch(e,t={}){return this._post("switchBranch",e,null,t)}async getTenant(e,t={}){return this._get("tenant",null,e,t)}async postUpload(e={}){return this._post("upload",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class pi extends c{constructor(){super("app-member")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putTransfer(e={}){return this._put("transfer",null,null,e)}async putId(e,t={}){return this._put("",null,e,t)}}class hi extends c{constructor(){super("app-setting")}async delete(e,t={}){return this._delete("",null,e,t)}async getCheckAppUserAdmin(e,t={}){return this._get("checkAppUserAdmin",null,e,t)}async getCheckAppUserVisibility(e,t={}){return this._get("checkAppUserVisibility",null,e,t)}async deleteDeveloper(e,t={}){return this._delete("developer",null,e,t)}async postDeveloper(e={}){return this._post("developer",null,null,e)}async getInfoByAppId(e,t={}){return this._get("infoByAppId",null,e,t)}async postSaveSetting(e,t={}){return this._post("saveSetting",e,null,t)}async postSaveSettingBatch(e={}){return this._post("saveSettingBatch",null,null,e)}}class di extends c{constructor(){super("assets")}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async postMove(e={}){return this._post("move",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async postUpload(e={}){return this._post("upload",null,null,e)}}class yi extends c{constructor(){super("audit-log")}async postExport(e,t={}){return this._post("export",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getModules(e={}){return this._get("modules",null,null,e)}async getOperateTypes(e={}){return this._get("operateTypes",null,null,e)}async getOperators(e={}){return this._get("operators",null,null,e)}async postPage(e,t={}){return this._post("page",e,null,t)}}class _i extends c{constructor(){super("category")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class fi extends c{constructor(){super("data-source")}async post(e,t={}){return this._post("",e,null,t)}async put(e,t={}){return this._put("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async putEnabled(e,t={}){return this._put("enabled",e,null,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async postQueryData(e,t={}){return this._post("queryData",null,e,t)}async postSql(e,t={}){return this._post("sql",e,null,t)}async postTestConnect(e,t={}){return this._post("testConnect",e,null,t)}}class Ii extends c{constructor(){super("datasource-devops")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async postList(e,t={}){return this._post("list",e,null,t)}async postPage(e,t={}){return this._post("page",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class vi extends c{constructor(){super("datasource-move")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getMoveData(e,t={}){return this._get("moveData",null,e,t)}async getPage(e,t={}){return this._get("page",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Si extends c{constructor(){super("datasource-move-data")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ai extends c{constructor(){super("datasource-move-detail")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Li extends c{constructor(){super("external-message")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class mi extends c{constructor(){super("file")}async postUpload(e,t={}){return this._post("upload",null,e,t)}}class Ti extends c{constructor(){super("i18n-config")}async getList(e,t={}){return this._get("list",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ri extends c{constructor(){super("i18n-info")}async delete(e,t={}){return this._delete("",null,e,t)}async postExternal(e={}){return this._post("external",null,null,e)}async getLang(e,t={}){return this._get("lang",null,e,t)}async postLang(e,t={}){return this._post("lang",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putKey(e,t={}){return this._put("{key}",e,null,t)}}class bi extends c{constructor(){super("internal-message")}async post(e,t={}){return this._post("",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putRead(e={}){return this._put("read",null,null,e)}async getUnread(e={}){return this._get("unread",null,null,e)}}class Ei extends c{constructor(){super("invoke-log")}async getExport(e,t={}){return this._get("export",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}}class Oi extends c{constructor(){super("ldap")}async postUpload(e={}){return this._post("upload",null,null,e)}}class Di extends c{constructor(){super("license-unbind-log")}async post(e,t={}){return this._post("",e,null,t)}}class Ni extends c{constructor(){super("license")}async getActivate(e,t={}){return this._get("activate",null,e,t)}async postActivates(e={}){return this._post("activates",null,null,e)}async postActivatesOffline(e,t={}){return this._post("activatesOffline",null,e,t)}async getCheckLicense(e={}){return this._get("checkLicense",null,null,e)}async getClients(e,t={}){return this._get("clients",null,e,t)}async getGetAppBasicInfo(e,t={}){return this._get("getAppBasicInfo",null,e,t)}async getGetExpireMsg(e,t={}){return this._get("getExpireMsg",null,e,t)}async getGetUsers(e,t={}){return this._get("getUsers",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getUnbind(e,t={}){return this._get("unbind",null,e,t)}}class Mi extends c{constructor(){super("login-log")}async getPage(e,t={}){return this._get("page",null,e,t)}}class wi extends c{constructor(){super("login")}async postCheckApp(e,t={}){return this._post("checkApp",e,null,t)}async postSendMsg(e,t={}){return this._post("sendMsg",e,null,t)}async postSign(e,t={}){return this._post("sign",e,null,t)}async getSignOut(e={}){return this._get("signOut",null,null,e)}async getUserAppAuth(e,t={}){return this._get("userAppAuth",null,e,t)}}class xi extends c{constructor(){super("manager")}async getPlat(e,t={}){return this._get("plat",null,e,t)}async getTenant(e,t={}){return this._get("tenant",null,e,t)}}class Pi extends c{constructor(){super("message-setting")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetTypeCount(e={}){return this._get("getTypeCount",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async postMqtt(e,t={}){return this._post("mqtt",e,null,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async postSendEmailMessage(e,t={}){return this._post("sendEmailMessage",e,null,t)}async postSendMessage(e,t={}){return this._post("sendMessage",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ci extends c{constructor(){super("nav-menu")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetSelected(e={}){return this._get("getSelected",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async postSelect(e,t={}){return this._post("select",e,null,t)}async putUpdateDesignerJson(e,t={}){return this._put("updateDesignerJson",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ui extends c{constructor(){super("nav-page")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putUpdateDesignerJson(e,t={}){return this._put("updateDesignerJson",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Bi extends c{constructor(){super("openapi-group")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ki extends c{constructor(){super("openapi-key-grant")}async post(e={}){return this._post("",null,null,e)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getOpenapi(e={}){return this._get("openapi",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Gi extends c{constructor(){super("org")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e={}){return this._get("info",null,null,e)}async postInputCheck(e,t={}){return this._post("inputCheck",e,null,t)}async getList(e={}){return this._get("list",null,null,e)}async postOrgHavePersonCheck(e,t={}){return this._post("orgHavePersonCheck",e,null,t)}async postTransferAndDelete(e,t={}){return this._post("transferAndDelete",e,null,t)}async postUser(e,t={}){return this._post("user",e,null,t)}async getUser(e,t={}){return this._get("user",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Vi extends c{constructor(){super("org-user-picker")}async getManagement(e,t={}){return this._get("management",null,e,t)}async getTenant(e,t={}){return this._get("tenant",null,e,t)}}class Ki extends c{constructor(){super("permission")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Xi extends c{constructor(){super("plat")}async postBase(e,t={}){return this._post("base",e,null,t)}async postDingtalk(e,t={}){return this._post("dingtalk",e,null,t)}async postEmail(e,t={}){return this._post("email",e,null,t)}async postFeishu(e,t={}){return this._post("feishu",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async postLogin(e,t={}){return this._post("login",e,null,t)}async postOrg(e,t={}){return this._post("org",e,null,t)}async postSecurity(e,t={}){return this._post("security",e,null,t)}async postTheme(e,t={}){return this._post("theme",e,null,t)}async postUserRole(e,t={}){return this._post("user-role",e,null,t)}async deleteUserRole(e,t={}){return this._delete("user-role",null,e,t)}async getUser(e={}){return this._get("user",null,null,e)}async getVersion(e={}){return this._get("version",null,null,e)}async postWatermark(e,t={}){return this._post("watermark",e,null,t)}async postWxwork(e,t={}){return this._post("wxwork",e,null,t)}}class Hi extends c{constructor(){super("plugin")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async postUploadZip(e={}){return this._post("uploadZip",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Fi extends c{constructor(){super("plugin-version")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Wi extends c{constructor(){super("pm-process-delegate")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class $i extends c{constructor(){super("pm-process-delegate-detail")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ji extends c{constructor(){super("pm-process-instance")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class zi extends c{constructor(){super("pm-task-done")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class qi extends c{constructor(){super("pm-task-todo")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ji extends c{constructor(){super("print-log")}async post(e,t={}){return this._post("",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}}class Qi extends c{constructor(){super("print-resource")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getGetIpAddressStatus(e,t={}){return this._get("getIpAddressStatus",null,e,t)}async getGetPrintCount(e={}){return this._get("getPrintCount",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getListByMacAddress(e,t={}){return this._get("listByMacAddress",null,e,t)}async postPrintTest(e={}){return this._post("printTest",null,null,e)}async postSendPrintData(e,t={}){return this._post("sendPrintData",e,null,t)}async putUpdateRemark(e,t={}){return this._put("updateRemark",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Zi extends c{constructor(){super("regexp")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Yi extends c{constructor(){super("released")}async deleteApp(e,t={}){return this._delete("app",null,e,t)}async putApp(e={}){return this._put("app",null,null,e)}async getApp(e,t={}){return this._get("app",null,e,t)}}class ea extends c{constructor(){super("role-permission")}async getPlat(e,t={}){return this._get("plat",null,e,t)}async postPlat(e,t={}){return this._post("plat",e,null,t)}async getTenant(e,t={}){return this._get("tenant",null,e,t)}async postTenant(e,t={}){return this._post("tenant",e,null,t)}}class ta extends c{constructor(){super("role")}async getList(e={}){return this._get("list",null,null,e)}async postPlat(e,t={}){return this._post("plat",e,null,t)}async deletePlat(e,t={}){return this._delete("plat",null,e,t)}async getPlat(e,t={}){return this._get("plat",null,e,t)}async putPlat(e={}){return this._put("plat",null,null,e)}async postTenant(e,t={}){return this._post("tenant",e,null,t)}async deleteTenant(e,t={}){return this._delete("tenant",null,e,t)}async getTenant(e,t={}){return this._get("tenant",null,e,t)}async putTenant(e={}){return this._put("tenant",null,null,e)}}class na extends c{constructor(){super("seat-message")}async getClose(e={}){return this._get("close",null,null,e)}}class sa extends c{constructor(){super("seat")}async postAuth(e={}){return this._post("auth",null,null,e)}async getListAuthed(e,t={}){return this._get("listAuthed",null,e,t)}async getListNotAuth(e,t={}){return this._get("listNotAuth",null,e,t)}async postRemoveAuth(e,t={}){return this._post("removeAuth",null,e,t)}async getTotalinfos(e={}){return this._get("totalinfos",null,null,e)}}class ra extends c{constructor(){super("shortcut")}async postMenu(e={}){return this._post("menu",null,null,e)}async deleteMenu(e,t={}){return this._delete("menu",null,e,t)}async getMenu(e,t={}){return this._get("menu",null,e,t)}async putMenu(e,t={}){return this._put("menu",e,null,t)}}class la extends c{constructor(){super("sms")}async postGetSignsAndTemplates(e,t={}){return this._post("getSignsAndTemplates",e,null,t)}async postSendMsg(e,t={}){return this._post("sendMsg",e,null,t)}}class ia extends c{constructor(){super("started-process")}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}}class aa extends c{constructor(){super("task-delegate")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postCancel(e={}){return this._post("cancel",null,null,e)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ua extends c{constructor(){super("task-done")}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}}class oa extends c{constructor(){super("task-todo")}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async getProcess(e={}){return this._get("process",null,null,e)}}class ca extends c{constructor(){super("tenant-developer")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postRemoveAndHandover(e,t={}){return this._post("RemoveAndHandover",e,null,t)}async getGetUserMaintainerApp(e,t={}){return this._get("getUserMaintainerApp",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ga extends c{constructor(){super("tenant")}async putDisable(e={}){return this._put("disable",null,null,e)}async putEnable(e={}){return this._put("enable",null,null,e)}async getGetTenantIdByAppId(e,t={}){return this._get("getTenantIdByAppId",null,e,t)}async getGetTencentByDomain(e,t={}){return this._get("getTencentByDomain",null,e,t)}async getInfo(e={}){return this._get("info",null,null,e)}async getList(e,t={}){return this._get("list",null,e,t)}async postManagement(e,t={}){return this._post("management",e,null,t)}async deleteManagement(e,t={}){return this._delete("management",null,e,t)}async getManagement(e,t={}){return this._get("management",null,e,t)}async putManagement(e,t={}){return this._put("management",e,null,t)}async putUpdateDomain(e,t={}){return this._put("updateDomain",e,null,t)}async postUserRole(e,t={}){return this._post("user-role",e,null,t)}async deleteUserRole(e,t={}){return this._delete("user-role",null,e,t)}async getUser(e={}){return this._get("user",null,null,e)}async putId(e,t,s={}){return this._put("",t,e,s)}}class pa extends c{constructor(){super("user")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e={}){return this._get("info",null,null,e)}async getInfoByIds(e,t={}){return this._get("infoByIds",null,e,t)}async getLast(e={}){return this._get("last",null,null,e)}async getList(e,t={}){return this._get("list",null,e,t)}async getListByTenantId(e,t={}){return this._get("listByTenantId",null,e,t)}async postOrg(e,t={}){return this._post("org",e,null,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async postPlat(e,t={}){return this._post("plat",e,null,t)}async postReset(e,t={}){return this._post("reset",e,null,t)}async postSettings(e,t={}){return this._post("settings",e,null,t)}async postTenant(e,t={}){return this._post("tenant",e,null,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ha extends c{constructor(){super("user-extra")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class da extends c{constructor(){super("user-info-log")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class ya extends c{constructor(){super("user-password-history")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e={}){return this._get("list",null,null,e)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class _a extends c{constructor(){super("workbench-component")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class fa extends c{constructor(){super("workbench-component-relation")}async post(e,t={}){return this._post("",e,null,t)}async delete(e,t={}){return this._delete("",null,e,t)}async postDrag(e,t={}){return this._post("drag",e,null,t)}async getInfo(e,t={}){return this._get("info",null,e,t)}async getList(e,t={}){return this._get("list",null,e,t)}async getPage(e,t={}){return this._get("page",null,e,t)}async putUpdatePositionJson(e,t={}){return this._put("updatePositionJson",e,null,t)}async putWorkbenchComponentActive(e,t={}){return this._put("workbenchComponentActive",null,e,t)}async putId(e,t,s={}){return this._put("",t,e,s)}}class Ia extends c{constructor(){super("api")}async getApaasUtils(e,t={}){return this._get("apaas-utils",null,e,t)}async postAppGrantedUser(e,t,s={}){return this._post("app-granted-user",t,e,s)}async getAppGrantedUser(e,t={}){return this._get("app-granted-user",null,e,t)}async getAppSetting(e,t={}){return this._get("app-setting",null,e,t)}async getApp(e,t={}){return this._get("app",null,e,t)}async postApp(e,t={}){return this._post("app",e,null,t)}async deleteApp(e,t={}){return this._delete("app",null,e,t)}async putApp(e,t={}){return this._put("app",e,null,t)}async getDataSource(e,t={}){return this._get("data-source",null,e,t)}async postDataSource(e,t,s={}){return this._post("data-source",t,e,s)}async getMsg(e,t={}){return this._get("msg",null,e,t)}async postMsg(e,t={}){return this._post("msg",e,null,t)}async postOpenapiGroup(e,t={}){return this._post("openapi-group",e,null,t)}async putOpenapiGroup(e,t={}){return this._put("openapi-group",null,e,t)}async putOpenapiKeyGrant(e,t={}){return this._put("openapi-key-grant",null,e,t)}async getOrgUserPicker(e,t={}){return this._get("org-user-picker",null,e,t)}async postOrgUserPicker(e,t={}){return this._post("org-user-picker",e,null,t)}async postOrg(e={}){return this._post("org",null,null,e)}async getOrg(e={}){return this._get("org",null,null,e)}async postPrintLog(e,t={}){return this._post("print-log",e,null,t)}async getPrint(e,t={}){return this._get("print",null,e,t)}async postPrint(e,t={}){return this._post("print",e,null,t)}async deleteRegexp(e,t={}){return this._delete("regexp",null,e,t)}async getRegexp(e,t={}){return this._get("regexp",null,e,t)}async postRegexp(e,t={}){return this._post("regexp",e,null,t)}async putRegexp(e,t={}){return this._put("regexp",e,null,t)}async getTenant(e,t={}){return this._get("tenant",null,e,t)}async postTenant(e,t={}){return this._post("tenant",e,null,t)}async getUser(e,t={}){return this._get("user",null,e,t)}async postUser(e,t={}){return this._post("user",null,e,t)}}class va{constructor(){r(this,"apk",new ci);r(this,"app",new gi);r(this,"appMember",new pi);r(this,"appSetting",new hi);r(this,"assets",new di);r(this,"auditLog",new yi);r(this,"category",new _i);r(this,"dataSource",new fi);r(this,"datasourceDevops",new Ii);r(this,"datasourceMove",new vi);r(this,"datasourceMoveData",new Si);r(this,"datasourceMoveDetail",new Ai);r(this,"externalMessage",new Li);r(this,"file",new mi);r(this,"i18NConfig",new Ti);r(this,"i18NInfo",new Ri);r(this,"internalMessage",new bi);r(this,"invokeLog",new Ei);r(this,"ldap",new Oi);r(this,"licenseUnbindLog",new Di);r(this,"license",new Ni);r(this,"loginLog",new Mi);r(this,"login",new wi);r(this,"manager",new xi);r(this,"messageSetting",new Pi);r(this,"navMenu",new Ci);r(this,"navPage",new Ui);r(this,"openapiGroup",new Bi);r(this,"openapiKeyGrant",new ki);r(this,"org",new Gi);r(this,"orgUserPicker",new Vi);r(this,"permission",new Ki);r(this,"plat",new Xi);r(this,"plugin",new Hi);r(this,"pluginVersion",new Fi);r(this,"pmProcessDelegate",new Wi);r(this,"pmProcessDelegateDetail",new $i);r(this,"pmProcessInstance",new ji);r(this,"pmTaskDone",new zi);r(this,"pmTaskTodo",new qi);r(this,"printLog",new Ji);r(this,"printResource",new Qi);r(this,"regexp",new Zi);r(this,"released",new Yi);r(this,"rolePermission",new ea);r(this,"role",new ta);r(this,"seatMessage",new na);r(this,"seat",new sa);r(this,"shortcut",new ra);r(this,"sms",new la);r(this,"startedProcess",new ia);r(this,"taskDelegate",new aa);r(this,"taskDone",new ua);r(this,"taskTodo",new oa);r(this,"tenantDeveloper",new ca);r(this,"tenant",new ga);r(this,"user",new pa);r(this,"userExtra",new ha);r(this,"userInfoLog",new da);r(this,"userPasswordHistory",new ya);r(this,"workbenchComponent",new _a);r(this,"workbenchComponentRelation",new fa);r(this,"api",new Ia)}}class Un{constructor(){r(this,"i18n",$n.createI18n({}));r(this,"storeUtil",new mn);r(this,"store",this.storeUtil.store);r(this,"message");r(this,"dictionary",new xn);r(this,"register",{designer:{mobile:new G,web:new G},render:{mobile:new V,web:new V},editor:P,formItem:C});r(this,"api",{apaas:new oi,platform:new va})}t(e,t){return this.i18n.global.t(e,t)}}class Bn{constructor(e){r(this,"evt",new Tn);r(this,"state",new F);r(this,"item",{});r(this,"provider",{});r(this,"context",{});r(this,"params",{});r(this,"fields",[]);r(this,"modelMap",{});this.model=e,this.init()}init(){this.model.children&&this.initFormItems(this.model.children),this.initEvent(),this.calcState()}initEvent(){}calcState(){}initFormItems(e){e.forEach(t=>{let s=null;if((t.type==="item"||t.type==="hidden")&&(this.fields.push(t.name),this.modelMap[t.name]=t),t.type==="item"&&(s=_gct.register.formItem.create(`${t.type}___${t.editor.type}___${t.name}`),s||(s=_gct.register.formItem.create(`${t.type}___${t.editor.type}`))),s||(s=_gct.register.formItem.create(t.type)),!s){console.error(`未找到表单项提供者:${t.type}`,t);return}if(this.provider[t.name]=s,t.type==="item"){const u=t;this.item[u.name]=s.createController(this,u)}else if(t.type==="hidden"){const u=t;this.item[u.name]=s.createController(this,u)}else if(t.type==="container"||t.container){const u=t;this.item[t.name]=s.createController(this,u),u.children&&this.initFormItems(u.children)}})}calcHidden(){Object.keys(this.item).forEach(t=>{const s=this.item[t];if(s.model.hidden){const u=s.model.hidden(this,s,this.state.data);u!=null&&(s.state.visible=!u)}})}getData(){const e={};return this.fields.forEach(t=>{const s=this.item[t];s&&(s.state.visible===!0||s.model.type==="hidden")&&(e[s.key]=s.value)}),e}resetData(){this.fields.forEach(e=>{const t=this.item[e];t&&t.reset()})}async load(){try{if(!this.model.loadRequest)return{};this.state.loading=!0;const e=await this.model.loadRequest({id:this.context.id});return this.fields.forEach(t=>{const s=this.item[t];s&&(s.value=e[s.key]),s.defaultValue()}),this.state.loaded=!0,e}finally{this.state.loading=!1}}destroy(){this.state.destroyed=!0,this.evt.reset(),this.fields.forEach(e=>{const t=this.item[e];t&&t.destroy()})}validate(){return Promise.resolve(!0)}validateItem(e){return Promise.resolve(!0)}loaded(){this.calcHidden(),this.fields.forEach(e=>{this.item[e].defaultValue()}),this.calcState()}mounted(){}}class Sa extends Bn{initEvent(){super.initEvent(),this.evt.on("change",(e,t,s)=>{if(this.model.watch){const l=this.model.watch[e];l&&l(this,t,s)}const u=this.item[e];u&&u.model.watch&&u.model.watch(this,u,t,s),t!=s&&this.calcHidden(),this.model.autosave===!0&&this.state.loading===!1&&this.autoSave()})}autoSave(){return this.save()}save(){const e=this.getData();return this.state.isNew===!0&&this.model.newRequest?this.model.newRequest(e):this.model.updateRequest?this.model.updateRequest({id:this.context.id},e):Promise.resolve(e)}}function Aa(n){const e=n();return e.state=I.reactive(e.state),I.onUnmounted(()=>e.destroy()),e}class z{constructor(e){r(this,"model");this.model=e}}class kn{constructor(e){r(this,"evt",new Tn);r(this,"context",{});r(this,"params",{});r(this,"state",new F);r(this,"item",{});r(this,"provider",{});this.model=e,this.init()}load(){throw new Error("Method not implemented.")}loaded(){throw new Error("Method not implemented.")}destroy(){throw new Error("Method not implemented.")}validate(){throw new Error("Method not implemented.")}validateItem(e){throw new Error("Method not implemented.")}mounted(){throw new Error("Method not implemented.")}init(){this.model.children&&this.initFormItems(this.model.children),this.initEvent()}initEvent(){}initFormItems(e){e.forEach(t=>{let s=null;if(t.type==="item"&&(s=_gct.register.formItem.create(`${t.type}___${t.editor.type}___${t.name}`),s||(s=_gct.register.formItem.create(`${t.type}___${t.editor.type}`))),s||(s=_gct.register.formItem.create(t.type)),!s){console.error(`未找到表单项提供者:${t.type}`,t);return}if(this.provider[t.name]=s,t.type==="item"){const u=t;this.item[u.name]=s.createController(this,t)}else if(t.type==="container"){const u=t;this.item[t.name]=s.createController(this,t),u.children&&this.initFormItems(u.children)}})}getData(){return{}}resetData(){Object.keys(this.state.data).forEach(t=>{const s=this.state.data[t];s&&(typeof s=="object"?Array.isArray(s)?this.state.data[t]=[]:this.state.data[t]={}:this.state.data[t]=null)})}}function La(n){const e=new kn(n);return e.state=I.reactive(e.state),e}class E{constructor(e,t){r(this,"state",this.crateItemState());this.form=e,this.model=t,this.init()}get data(){return this.form.state.data}init(){}destroy(){this.state.destroyed=!0}crateItemState(){return new A}}function ma(n){const e=n();return e.state=I.reactive(e.state),e}class Ta extends E{constructor(){super(...arguments);r(this,"type","collapse-pane")}crateItemState(){return new fn}}class Ra extends E{constructor(){super(...arguments);r(this,"type","collapse")}crateItemState(){return new In}}class ba extends E{constructor(){super(...arguments);r(this,"type","tab")}crateItemState(){return new vn}}class Ea extends E{constructor(){super(...arguments);r(this,"type","tab-pane")}crateItemState(){return new Sn}}class Oa extends E{constructor(){super(...arguments);r(this,"type","group")}crateItemState(){return new An}}class q extends E{get key(){return this.model.field??this.model.name}get value(){return this.form.state.data[this.key]}set value(e){const t=m.cloneDeep(this.form.state.data[this.key]);this.form.state.data[this.key]=e,this.form.evt.emit("change",this.key,e,t),this.state.value=e}get editorValue(){return this.model.fields?this.model.fields.map(e=>this.form.item[e].value):this.value}set editorValue(e){this.model.fields?this.model.fields.forEach((t,s)=>{this.form.item[t].value=e==null?void 0:e[s]}):this.value=e}init(){if(super.init(),this.model.type!=="hidden"){const{editor:e}=this.model;this.state.readonly=e.readonly,e.disabled!=null&&(this.state.disabled=e.disabled)}if(this.model.dictionary){const{mode:e}=this.model.dictionary;e==="static"&&(this.state.options=this.model.dictionary.items||[])}}defaultValue(){this.form.state.data[this.key]===void 0&&this.model.defaultValue!==void 0&&(this.form.state.data[this.key]=this.model.defaultValue)}reset(){this.model.defaultValue!==void 0?this.value=this.model.defaultValue:this.value=void 0}crateItemState(){return new W}}class Da extends q{constructor(){super(...arguments);r(this,"type","item")}async loadDictionary(t){if(this.state.options.length>0)return this.state.options;this.state.options=[],this.state.loading=!0;try{return this.model.dictionary?this.state.options=await _gct.dictionary.asyncGetByConfig(this.model.dictionary,t):this.model.dictionaryTag&&(this.state.options=await _gct.dictionary.asyncGet(this.model.dictionaryTag,t)),this.state.options}finally{this.state.loading=!1}}clearDictionary(){this.state.options=[]}crateItemState(){return new Ln}}class Na extends q{constructor(){super(...arguments);r(this,"type","hidden")}}class Ma extends z{}class wa extends z{}function Gn(){return I.inject("formController")}function xa(n){let e;if(n){const t=Gn();e=I.computed({get(){return t.item[n].value},set(s){t.item[n].value=s}})}else{let t=I.getCurrentInstance().proxy;const s=t.$props,u=t.$emit;e=I.computed({get:()=>s.value,set:l=>{typeof l=="string"&&(l=l.trim()),!(typeof l!="object"&&s.value==l)&&u("update:value",l)}}),t=null}return e}function Pa(n,e){let t=I.getCurrentInstance().proxy;const s=t.$props,u=t.$emit,l=n?n.length:0,i=e?e.length:0,g=I.computed({get:()=>{if(!s.value)return"";let o=s.value;return l>0&&o.startsWith(n)&&(o=o.substring(l)),i>0&&o.endsWith(e)&&(o=o.substring(0,o.length-i)),o},set:o=>{if(s.value===o)return;if(typeof o=="string"&&(o=o.trim()),o==""){u("update:value","");return}let h=o;l>0&&(h=n+h),i>0&&(h=h+e),u("update:value",h)}});return t=null,g}function Ca(n){const e=I.inject("modal");return e&&n&&(e.ok=n),e}function Ua(n){return new Pn(n)}function Vn(n){return typeof n<"u"}function Ba(n){const e=I.ref(n||""),t=I.ref(!1),s=I.ref(!1);return I.watch(e,u=>{Vn(u)&&(s.value=!0,t.value=Kn(u))},{immediate:!!n,flush:"sync"}),{clipboardRef:e,isSuccessRef:t,copiedRef:s}}function Kn(n,{target:e=document.body}={}){const t=document.createElement("textarea"),s=document.activeElement;t.value=n,t.setAttribute("readonly",""),t.style.contain="strict",t.style.position="absolute",t.style.left="-9999px",t.style.fontSize="12pt";const u=document.getSelection();let l;u&&u.rangeCount>0&&(l=u.getRangeAt(0)),e.append(t),t.select(),t.selectionStart=0,t.selectionEnd=n.length;let i=!1;try{i=document.execCommand("copy")}catch(g){throw new Error(g)}return t.remove(),l&&u&&(u.removeAllRanges(),u.addRange(l)),s&&s.focus(),i}function Xn(){if(window._gct){console.warn("核心包已安装,请勿重复安装!");return}console.info("核心包安装成功!"),window._gct=new Un}exports.AGLINE_ENUMS=Jt;exports.APP_DARK_MODE_KEY_=Is;exports.APP_LOCAL_CACHE_KEY=vs;exports.APP_SESSION_CACHE_KEY=Ss;exports.ASSIGNMENTSTRATEGY_ENUM=qe;exports.AggTypes=de;exports.AppPublishStateEnum=Xt;exports.BasicAction=Ht;exports.BindCmpStyleEnum=Gt;exports.BindCmpStyleTypeEnum=Vt;exports.BizServiceEnum=sn;exports.BorderStyle=Me;exports.BuiltinType=Ye;exports.ButtonColorTheme=dt;exports.ButtonColorType=ht;exports.ButtonGroupType=ts;exports.ButtonOpeEnum=Qt;exports.ButtonSize=_t;exports.ButtonStyle=yt;exports.ButtonType=It;exports.ButtonTypeGroup=ft;exports.ButtonType_vant=vt;exports.COLUMNS_TYPE=He;exports.CURRENCY_ENUM=nt;exports.CURRENCY_LANG_ENUM=lt;exports.CacheTypeEnum=zt;exports.CategoryTypeEnum=Ze;exports.Ch_BindCmpStyleEnum=ns;exports.ColorEditorController=wa;exports.ContentEnum=ee;exports.ContentTypeEnum=H;exports.CoreConst=U;exports.CreateType=ce;exports.CustomAction=Ft;exports.DESIGNER_SESSION_CACHE_KEY=As;exports.DatasourceTypeEnum=bt;exports.DateRangeEnums=et;exports.DefaultActions=is;exports.Dependency_ENUM=Je;exports.DesignerRegister=G;exports.DictionaryUtil=xn;exports.DisplayEnums=pt;exports.DisplayType=Ve;exports.EditFormController=Sa;exports.EditorController=z;exports.EditorRegister=P;exports.EditorRegisterConst=j;exports.EditorType=bn;exports.EditorTypeOld=En;exports.EntityModelCategoryEnum=Te;exports.EntityModelTypeEnum=Re;exports.ErrorTypeEnum=en;exports.EventCategory=Pe;exports.ExamineAndApproveStateEnum=yn;exports.ExceptionEnum=Yt;exports.FIELD_TYPE=d;exports.FIELD_TYPE_BASIC=ae;exports.FIELD_TYPE_CATEGORY=ie;exports.FIELD_TYPE_LOGIC=ue;exports.FIELD_TYPE_TRACE=oe;exports.FieldDefaultValueTypeEnum=be;exports.FieldIconMap=Yn;exports.FieldSysVarDefaultValueEnum=Ee;exports.FieldTypeToJs=Zn;exports.FormCollapseController=Ra;exports.FormCollapsePaneController=Ta;exports.FormCollapsePaneState=fn;exports.FormCollapseState=In;exports.FormComponents=Nt;exports.FormContainerType=On;exports.FormController=kn;exports.FormEditItemController=q;exports.FormEditItemState=W;exports.FormGroupController=Oa;exports.FormGroupState=An;exports.FormHiddenItemController=Na;exports.FormItemBasicController=E;exports.FormItemBasicState=A;exports.FormItemController=Da;exports.FormItemRegister=C;exports.FormItemState=Ln;exports.FormState=F;exports.FormTabController=ba;exports.FormTabPaneController=Ea;exports.FormTabPaneState=Sn;exports.FormTabState=vn;exports.GENDER_TYPE=Ae;exports.GLOBAL_TYPE=Xe;exports.GLOBAL_VAR_TYPE=Ke;exports.GctFormController=Bn;exports.GctGlobal=Un;exports.GlobalPiniaState=_n;exports.GlobalStoreUtil=mn;exports.HttpUtil=wn;exports.INNER_EVENT=Fe;exports.KeyMode=ct;exports.LOCALE_KEY=cs;exports.LOCALE_LIST_KEY=gs;exports.LOCAL_I18N_TRANSLATE=ps;exports.LOCK_INFO_KEY=_s;exports.LengthUnitEditorController=Ma;exports.ListTreeSearchTypeEnum=Rt;exports.MULTIPLE_TABS_KEY=fs;exports.MaterialEnum=he;exports.MenuModeEnum=an;exports.MenuSplitTyeEnum=un;exports.MenuType=ge;exports.MenuTypeEnum=rn;exports.MessageType=Ie;exports.MixSidebarTriggerEnum=cn;exports.Namespace=Pn;exports.NodesConfigTypeEnum=ye;exports.OpenMode=pe;exports.PLUGIN_BASE_URL=Nn;exports.PROJ_CFG_KEY=ys;exports.PageEnum=gn;exports.PanelEnum=De;exports.PermissionModeEnum=re;exports.PersonalCenterType=Se;exports.Platform=w;exports.PlatformSettingActions=as;exports.PluginModeEnum=M;exports.PluginPgkUtil=X;exports.PluginStaticResource=Hs;exports.Postion=Ne;exports.PrintModeEnums=ut;exports.ProcessStatusEnum=dn;exports.ProgressTypeEnum=Ge;exports.ProjectName=R;exports.PropGroup=Ce;exports.ROLES_KEY=ds;exports.RdoButtonOpeEnum=Zt;exports.RenderRegister=V;exports.RequestEnum=nn;exports.ResetRuleType=Ot;exports.ResultEnum=tn;exports.RoleEnum=pn;exports.RouterTransitionEnum=le;exports.RowSelectionTypeEnums=it;exports.SCOPE=Dt;exports.SEARCH_SEVICE=qt;exports.SHOW_FIELDTYPES=es;exports.SIDE_BAR_MINI_WIDTH=Jn;exports.SIDE_BAR_SHOW_TIT_MINI_WIDTH=Qn;exports.STYLE_NAMESPACE_TAG=Dn;exports.SUB_TABLE_EDIT_MODE=We;exports.SUB_TABLE_OPE_EVENT_TYPE=je;exports.SUB_TABLE_OPE_EVENT_TYPE_INLINE=$e;exports.SearchComponents=Mt;exports.SelectPickerEnums=tt;exports.SessionTimeoutProcessingEnum=se;exports.SettingButtonPositionEnum=ne;exports.SignatureTypeEnum=Et;exports.SizeEnum=hn;exports.StatisticalMethodEnums=at;exports.StyleGroup=Ue;exports.TENANT_KEY=us;exports.TIMETYPE_ENUM=st;exports.TIMETYPE_LANG_ENUM=rt;exports.TIMEZONE_KEY=jt;exports.TODO_TYPE=Le;exports.TOKEN_KEY=os;exports.TableEditingMethodEnum=mt;exports.TableSearchTypeEnum=At;exports.TableTypeEnum=Lt;exports.TagTypeEnum=ke;exports.TextAlign=we;exports.TextDecoration=xe;exports.ThemeEnum=te;exports.ToolkitEnum=Qe;exports.TopMenuAlignEnum=on;exports.TransactionMode=gt;exports.TriggerEnum=ln;exports.USER_INFO_KEY=hs;exports.UniqueConstraintType=fe;exports.UserServiceType=me;exports.VERIFICATIONCONDITIONS_TYPE=ze;exports.WidgetInScopeEnum=Tt;exports.WorkbenchType=ve;exports.bindCmpStyleMap=rs;exports.buttonShowType=Kt;exports.ch_ProcessStatusMap=Ts;exports.controlConfigEnum=xt;exports.copyTextToClipboard=Kn;exports.deepMerge=K;exports.default=Xn;exports.fixedAlignENUM=Ct;exports.getToken=Mn;exports.install=Xn;exports.isDef=Vn;exports.notSingleArr=Ls;exports.openWindowEnums=ot;exports.operateSysEnums=St;exports.presetColor=ms;exports.screenEnum=$t;exports.screenMap=b;exports.scriptTypeEnum=Oe;exports.searchListByFieldType=ls;exports.selectionTypeEnums=_e;exports.setToken=Ps;exports.sizeEnum=Wt;exports.sortTypeEnum=kt;exports.statisticalMethodEnum=Pt;exports.tableColumnTypeEnum=Ut;exports.tableColumnWidthEnum=wt;exports.tabsTypeENUM=Bt;exports.tagEnum=Be;exports.transformBindCmp2CmpType=ss;exports.useCopyToClipboard=Ba;exports.useEditFormController=Aa;exports.useForm=Gn;exports.useFormController=La;exports.useFormItemController=ma;exports.useGctFormValue=xa;exports.useGctFormValueByText=Pa;exports.useModal=Ca;exports.useNamespace=Ua;exports.widthEditorInstall=Fs;