@gizone/rrs-client 3.11.12-alpha.8 → 3.11.13-alpha.60

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 (363) hide show
  1. package/.openapi-generator/FILES +37 -14
  2. package/README.md +2 -2
  3. package/api.ts +2 -1
  4. package/apis/access-api.ts +61 -61
  5. package/apis/calendar-api.ts +231 -209
  6. package/apis/common-api.ts +192 -0
  7. package/apis/cost-api.ts +15 -15
  8. package/apis/energy-api.ts +15 -15
  9. package/apis/{inspection-api.ts → inspection-standard-api.ts} +386 -544
  10. package/apis/maintenance-standard-api.ts +1319 -0
  11. package/apis/message-api.ts +201 -223
  12. package/apis/privacy-api.ts +78 -76
  13. package/apis/setting-api.ts +596 -243
  14. package/apis/space-api.ts +0 -329
  15. package/apis/sys-api.ts +47 -47
  16. package/apis/user-api.ts +15 -15
  17. package/apis/work-order-api.ts +717 -8
  18. package/configuration.ts +1 -1
  19. package/dist/api.d.ts +2 -1
  20. package/dist/api.js +2 -1
  21. package/dist/apis/access-api.d.ts +41 -41
  22. package/dist/apis/access-api.js +44 -44
  23. package/dist/apis/calendar-api.d.ts +131 -123
  24. package/dist/apis/calendar-api.js +177 -164
  25. package/dist/apis/common-api.d.ts +102 -0
  26. package/dist/apis/common-api.js +144 -0
  27. package/dist/apis/cost-api.d.ts +10 -10
  28. package/dist/apis/cost-api.js +11 -11
  29. package/dist/apis/energy-api.d.ts +10 -10
  30. package/dist/apis/energy-api.js +11 -11
  31. package/dist/apis/inspection-standard-api.d.ts +745 -0
  32. package/dist/apis/{inspection-api.js → inspection-standard-api.js} +283 -373
  33. package/dist/apis/maintenance-standard-api.d.ts +684 -0
  34. package/dist/apis/maintenance-standard-api.js +1022 -0
  35. package/dist/apis/message-api.d.ts +117 -125
  36. package/dist/apis/message-api.js +132 -171
  37. package/dist/apis/privacy-api.d.ts +49 -48
  38. package/dist/apis/privacy-api.js +60 -60
  39. package/dist/apis/setting-api.d.ts +334 -144
  40. package/dist/apis/setting-api.js +433 -187
  41. package/dist/apis/space-api.d.ts +0 -159
  42. package/dist/apis/space-api.js +0 -272
  43. package/dist/apis/sys-api.d.ts +31 -31
  44. package/dist/apis/sys-api.js +34 -34
  45. package/dist/apis/user-api.d.ts +10 -10
  46. package/dist/apis/user-api.js +11 -11
  47. package/dist/apis/work-order-api.d.ts +391 -8
  48. package/dist/apis/work-order-api.js +529 -8
  49. package/dist/common.d.ts +1 -1
  50. package/dist/configuration.js +1 -1
  51. package/dist/esm/api.d.ts +2 -1
  52. package/dist/esm/api.js +2 -1
  53. package/dist/esm/apis/access-api.d.ts +41 -41
  54. package/dist/esm/apis/access-api.js +44 -44
  55. package/dist/esm/apis/calendar-api.d.ts +131 -123
  56. package/dist/esm/apis/calendar-api.js +177 -164
  57. package/dist/esm/apis/common-api.d.ts +102 -0
  58. package/dist/esm/apis/common-api.js +144 -0
  59. package/dist/esm/apis/cost-api.d.ts +10 -10
  60. package/dist/esm/apis/cost-api.js +11 -11
  61. package/dist/esm/apis/energy-api.d.ts +10 -10
  62. package/dist/esm/apis/energy-api.js +11 -11
  63. package/dist/esm/apis/inspection-standard-api.d.ts +745 -0
  64. package/dist/esm/apis/{inspection-api.js → inspection-standard-api.js} +278 -368
  65. package/dist/esm/apis/maintenance-standard-api.d.ts +684 -0
  66. package/dist/esm/apis/maintenance-standard-api.js +1015 -0
  67. package/dist/esm/apis/message-api.d.ts +117 -125
  68. package/dist/esm/apis/message-api.js +132 -171
  69. package/dist/esm/apis/privacy-api.d.ts +49 -48
  70. package/dist/esm/apis/privacy-api.js +60 -60
  71. package/dist/esm/apis/setting-api.d.ts +334 -144
  72. package/dist/esm/apis/setting-api.js +433 -187
  73. package/dist/esm/apis/space-api.d.ts +0 -159
  74. package/dist/esm/apis/space-api.js +0 -272
  75. package/dist/esm/apis/sys-api.d.ts +31 -31
  76. package/dist/esm/apis/sys-api.js +34 -34
  77. package/dist/esm/apis/user-api.d.ts +10 -10
  78. package/dist/esm/apis/user-api.js +11 -11
  79. package/dist/esm/apis/work-order-api.d.ts +391 -8
  80. package/dist/esm/apis/work-order-api.js +529 -8
  81. package/dist/esm/common.d.ts +1 -1
  82. package/dist/esm/configuration.js +1 -1
  83. package/dist/esm/models/dept-relation-dto.d.ts +140 -0
  84. package/dist/esm/models/dept-relation.d.ts +86 -0
  85. package/dist/esm/models/equipment-detail-dto.d.ts +6 -0
  86. package/dist/esm/models/equipment-edit-vo.d.ts +6 -0
  87. package/dist/esm/models/equipment-excel-add-dto.d.ts +6 -0
  88. package/dist/esm/models/equipment-search-system-dto.d.ts +12 -6
  89. package/dist/esm/models/equipment-system-add-vo.d.ts +1 -1
  90. package/dist/esm/models/{calendar-add-redis-list-vo.d.ts → excel-import-result-dtocalendar-export-dto.d.ts} +9 -21
  91. package/dist/esm/models/excel-import-result-dtoinspection-standard-import-dto.d.ts +31 -0
  92. package/dist/esm/models/excel-import-result-dtomaintenance-standard-import-dto.d.ts +31 -0
  93. package/dist/esm/models/file-dto.d.ts +3 -3
  94. package/dist/esm/models/get-user-wx200-response.d.ts +10 -10
  95. package/dist/esm/models/index.d.ts +35 -13
  96. package/dist/esm/models/index.js +35 -13
  97. package/dist/esm/models/inspection-point-item.d.ts +12 -0
  98. package/dist/esm/models/inspection-standard-add-or-update-vo.d.ts +3 -4
  99. package/dist/esm/models/inspection-standard-dto.d.ts +147 -0
  100. package/dist/esm/models/inspection-standard-entity.d.ts +13 -0
  101. package/dist/esm/models/inspection-standard-import-dto.d.ts +114 -0
  102. package/dist/esm/models/ipage-access-vo.d.ts +6 -6
  103. package/dist/esm/models/json-result-excel-import-result-dtocalendar-export-dto.d.ts +56 -0
  104. package/dist/esm/models/json-result-excel-import-result-dtoinspection-standard-import-dto.d.ts +56 -0
  105. package/dist/esm/models/json-result-excel-import-result-dtomaintenance-standard-import-dto.d.ts +56 -0
  106. package/dist/esm/models/{json-result-page-dto-inspection-standard-entity.d.ts → json-result-list-inspection-standard-entity.d.ts} +12 -12
  107. package/dist/esm/models/json-result-list-work-order-dept-settings-entity.d.ts +56 -0
  108. package/dist/esm/models/json-result-page-dto-inspection-standard-dto.d.ts +56 -0
  109. package/dist/{models/json-result-calendar-add-redis-list-vo.d.ts → esm/models/json-result-page-dto-sys-user-msg-dto.d.ts} +11 -11
  110. package/dist/esm/models/json-result-page-dto-sys-user-msg-dto.js +14 -0
  111. package/dist/esm/models/{json-result-sys-user-msg-do.d.ts → json-result-park-info-dto.d.ts} +11 -11
  112. package/dist/esm/models/json-result-park-info-dto.js +14 -0
  113. package/dist/esm/models/{json-result-calendar-add-redis-list-vo.d.ts → json-result-sys-user-msg-dto.d.ts} +11 -11
  114. package/dist/esm/models/json-result-sys-user-msg-dto.js +14 -0
  115. package/dist/esm/models/{json-result-space-edit-before-and-after-dto.d.ts → json-result-work-order-dept-settings-entity.d.ts} +11 -11
  116. package/dist/esm/models/json-result-work-order-dept-settings-entity.js +14 -0
  117. package/dist/esm/models/maintenance-standard-import-dto.d.ts +114 -0
  118. package/dist/esm/models/maintenance-standard-import-dto.js +14 -0
  119. package/dist/{models/page-dto-inspection-standard-entity.d.ts → esm/models/page-dto-inspection-standard-dto.d.ts} +7 -7
  120. package/dist/esm/models/page-dto-inspection-standard-dto.js +14 -0
  121. package/dist/esm/models/{page-dto-sys-user-msg-list-dto.d.ts → page-dto-sys-user-msg-dto.d.ts} +7 -7
  122. package/dist/esm/models/page-dto-sys-user-msg-dto.js +14 -0
  123. package/dist/esm/models/park-center-attribute-enum.d.ts +21 -0
  124. package/dist/esm/models/park-center-attribute-enum.js +22 -0
  125. package/dist/esm/models/park-info-dto.d.ts +85 -0
  126. package/dist/esm/models/park-info-dto.js +14 -0
  127. package/dist/esm/models/park-info-edit-vo.d.ts +37 -0
  128. package/dist/esm/models/park-info-edit-vo.js +14 -0
  129. package/dist/esm/models/park-plat-form-enum.d.ts +23 -0
  130. package/dist/esm/models/park-plat-form-enum.js +24 -0
  131. package/dist/esm/models/period-detail-resp.d.ts +6 -0
  132. package/dist/esm/models/plan-add-vo.d.ts +1 -1
  133. package/dist/esm/models/plan-edit-vo.d.ts +1 -1
  134. package/dist/esm/models/plan-item-add-vo.d.ts +1 -1
  135. package/dist/esm/models/plan-item-edit-vo.d.ts +1 -1
  136. package/dist/esm/models/process-work-order-vo.d.ts +19 -0
  137. package/dist/esm/models/source-work-order-inspection-dto.d.ts +4 -3
  138. package/dist/esm/models/space-add-excel-dto.d.ts +6 -0
  139. package/dist/esm/models/sys-dept.d.ts +7 -1
  140. package/dist/esm/models/{sys-user-msg-list-dto.d.ts → sys-user-msg-dto.d.ts} +30 -28
  141. package/dist/esm/models/sys-user-msg-dto.js +14 -0
  142. package/dist/esm/models/system-user-msg-source-type-enum.d.ts +23 -0
  143. package/dist/esm/models/system-user-msg-source-type-enum.js +24 -0
  144. package/dist/esm/models/system-user-msg-type-enum.d.ts +21 -0
  145. package/dist/esm/models/system-user-msg-type-enum.js +22 -0
  146. package/dist/esm/models/work-order-add-vo.d.ts +24 -4
  147. package/dist/esm/models/work-order-circulation-vo.d.ts +8 -1
  148. package/dist/esm/models/work-order-dept-settings-add-or-update-vo.d.ts +36 -0
  149. package/dist/esm/models/work-order-dept-settings-add-or-update-vo.js +14 -0
  150. package/dist/esm/models/work-order-dept-settings-entity.d.ts +67 -0
  151. package/dist/esm/models/work-order-dept-settings-entity.js +14 -0
  152. package/dist/esm/models/work-order-detail-dto.d.ts +46 -0
  153. package/dist/esm/models/work-order-internal-status-enum.d.ts +23 -0
  154. package/dist/esm/models/work-order-internal-status-enum.js +24 -0
  155. package/dist/esm/models/work-order-issue-type-enum.d.ts +26 -0
  156. package/dist/esm/models/work-order-issue-type-enum.js +27 -0
  157. package/dist/esm/models/work-order-liability-party-enum.d.ts +21 -0
  158. package/dist/esm/models/work-order-liability-party-enum.js +22 -0
  159. package/dist/esm/models/work-order-push-settings-entity.d.ts +4 -17
  160. package/dist/esm/models/work-order-push-settings-entity.js +1 -13
  161. package/dist/esm/models/work-order-push-settings-save-or-update-vo.d.ts +4 -17
  162. package/dist/esm/models/work-order-push-settings-save-or-update-vo.js +1 -13
  163. package/dist/esm/models/work-order-report-vo.d.ts +31 -0
  164. package/dist/esm/models/work-order-report-vo.js +14 -0
  165. package/dist/esm/models/work-order-settings-type-enum.d.ts +30 -0
  166. package/dist/esm/models/work-order-settings-type-enum.js +31 -0
  167. package/dist/esm/models/work-order-staging-data-vo.d.ts +49 -0
  168. package/dist/esm/models/work-order-staging-data-vo.js +14 -0
  169. package/dist/esm/models/work-order-type-enum.d.ts +1 -1
  170. package/dist/esm/models/work-order-type-enum.js +1 -1
  171. package/dist/models/dept-relation-dto.d.ts +140 -0
  172. package/dist/models/dept-relation.d.ts +86 -0
  173. package/dist/models/equipment-detail-dto.d.ts +6 -0
  174. package/dist/models/equipment-edit-vo.d.ts +6 -0
  175. package/dist/models/equipment-excel-add-dto.d.ts +6 -0
  176. package/dist/models/equipment-search-system-dto.d.ts +12 -6
  177. package/dist/models/equipment-system-add-vo.d.ts +1 -1
  178. package/dist/models/{calendar-add-redis-list-vo.d.ts → excel-import-result-dtocalendar-export-dto.d.ts} +9 -21
  179. package/dist/models/excel-import-result-dtoinspection-standard-import-dto.d.ts +31 -0
  180. package/dist/models/excel-import-result-dtomaintenance-standard-import-dto.d.ts +31 -0
  181. package/dist/models/file-dto.d.ts +3 -3
  182. package/dist/models/get-user-wx200-response.d.ts +10 -10
  183. package/dist/models/index.d.ts +35 -13
  184. package/dist/models/index.js +35 -13
  185. package/dist/models/inspection-point-item.d.ts +12 -0
  186. package/dist/models/inspection-standard-add-or-update-vo.d.ts +3 -4
  187. package/dist/models/inspection-standard-dto.d.ts +147 -0
  188. package/dist/models/inspection-standard-entity.d.ts +13 -0
  189. package/dist/models/inspection-standard-import-dto.d.ts +114 -0
  190. package/dist/models/ipage-access-vo.d.ts +6 -6
  191. package/dist/models/json-result-excel-import-result-dtocalendar-export-dto.d.ts +56 -0
  192. package/dist/models/json-result-excel-import-result-dtoinspection-standard-import-dto.d.ts +56 -0
  193. package/dist/models/json-result-excel-import-result-dtomaintenance-standard-import-dto.d.ts +56 -0
  194. package/dist/models/json-result-list-inspection-standard-entity.d.ts +56 -0
  195. package/dist/models/json-result-list-work-order-dept-settings-entity.d.ts +56 -0
  196. package/dist/models/json-result-page-dto-inspection-standard-dto.d.ts +56 -0
  197. package/dist/models/json-result-page-dto-sys-user-msg-dto.d.ts +56 -0
  198. package/dist/models/json-result-page-dto-sys-user-msg-dto.js +15 -0
  199. package/dist/models/{json-result-sys-user-msg-do.d.ts → json-result-park-info-dto.d.ts} +11 -11
  200. package/dist/models/json-result-park-info-dto.js +15 -0
  201. package/dist/models/json-result-sys-user-msg-dto.d.ts +56 -0
  202. package/dist/models/json-result-sys-user-msg-dto.js +15 -0
  203. package/dist/{esm/models/json-result-page-dto-sys-user-msg-list-dto.d.ts → models/json-result-work-order-dept-settings-entity.d.ts} +11 -11
  204. package/dist/models/json-result-work-order-dept-settings-entity.js +15 -0
  205. package/dist/models/maintenance-standard-import-dto.d.ts +114 -0
  206. package/dist/models/maintenance-standard-import-dto.js +15 -0
  207. package/dist/{esm/models/page-dto-inspection-standard-entity.d.ts → models/page-dto-inspection-standard-dto.d.ts} +7 -7
  208. package/dist/models/page-dto-inspection-standard-dto.js +15 -0
  209. package/dist/models/{page-dto-sys-user-msg-list-dto.d.ts → page-dto-sys-user-msg-dto.d.ts} +7 -7
  210. package/dist/models/page-dto-sys-user-msg-dto.js +15 -0
  211. package/dist/models/park-center-attribute-enum.d.ts +21 -0
  212. package/dist/models/park-center-attribute-enum.js +25 -0
  213. package/dist/models/park-info-dto.d.ts +85 -0
  214. package/dist/models/park-info-dto.js +15 -0
  215. package/dist/models/park-info-edit-vo.d.ts +37 -0
  216. package/dist/models/park-info-edit-vo.js +15 -0
  217. package/dist/models/park-plat-form-enum.d.ts +23 -0
  218. package/dist/models/park-plat-form-enum.js +27 -0
  219. package/dist/models/period-detail-resp.d.ts +6 -0
  220. package/dist/models/plan-add-vo.d.ts +1 -1
  221. package/dist/models/plan-edit-vo.d.ts +1 -1
  222. package/dist/models/plan-item-add-vo.d.ts +1 -1
  223. package/dist/models/plan-item-edit-vo.d.ts +1 -1
  224. package/dist/models/process-work-order-vo.d.ts +19 -0
  225. package/dist/models/source-work-order-inspection-dto.d.ts +4 -3
  226. package/dist/models/space-add-excel-dto.d.ts +6 -0
  227. package/dist/models/sys-dept.d.ts +7 -1
  228. package/dist/models/{sys-user-msg-list-dto.d.ts → sys-user-msg-dto.d.ts} +30 -28
  229. package/dist/models/sys-user-msg-dto.js +15 -0
  230. package/dist/models/system-user-msg-source-type-enum.d.ts +23 -0
  231. package/dist/models/system-user-msg-source-type-enum.js +27 -0
  232. package/dist/models/system-user-msg-type-enum.d.ts +21 -0
  233. package/dist/models/system-user-msg-type-enum.js +25 -0
  234. package/dist/models/work-order-add-vo.d.ts +24 -4
  235. package/dist/models/work-order-circulation-vo.d.ts +8 -1
  236. package/dist/models/work-order-dept-settings-add-or-update-vo.d.ts +36 -0
  237. package/dist/models/work-order-dept-settings-add-or-update-vo.js +15 -0
  238. package/dist/models/work-order-dept-settings-entity.d.ts +67 -0
  239. package/dist/models/work-order-dept-settings-entity.js +15 -0
  240. package/dist/models/work-order-detail-dto.d.ts +46 -0
  241. package/dist/models/work-order-internal-status-enum.d.ts +23 -0
  242. package/dist/models/work-order-internal-status-enum.js +27 -0
  243. package/dist/models/work-order-issue-type-enum.d.ts +26 -0
  244. package/dist/models/work-order-issue-type-enum.js +30 -0
  245. package/dist/models/work-order-liability-party-enum.d.ts +21 -0
  246. package/dist/models/work-order-liability-party-enum.js +25 -0
  247. package/dist/models/work-order-push-settings-entity.d.ts +4 -17
  248. package/dist/models/work-order-push-settings-entity.js +0 -14
  249. package/dist/models/work-order-push-settings-save-or-update-vo.d.ts +4 -17
  250. package/dist/models/work-order-push-settings-save-or-update-vo.js +0 -14
  251. package/dist/models/work-order-report-vo.d.ts +31 -0
  252. package/dist/models/work-order-report-vo.js +15 -0
  253. package/dist/models/work-order-settings-type-enum.d.ts +30 -0
  254. package/dist/models/work-order-settings-type-enum.js +34 -0
  255. package/dist/models/work-order-staging-data-vo.d.ts +49 -0
  256. package/dist/models/work-order-staging-data-vo.js +15 -0
  257. package/dist/models/work-order-type-enum.d.ts +1 -1
  258. package/dist/models/work-order-type-enum.js +1 -1
  259. package/models/dept-relation-dto.ts +152 -0
  260. package/models/dept-relation.ts +98 -0
  261. package/models/equipment-detail-dto.ts +6 -0
  262. package/models/equipment-edit-vo.ts +6 -0
  263. package/models/equipment-excel-add-dto.ts +6 -0
  264. package/models/equipment-search-system-dto.ts +12 -6
  265. package/models/equipment-system-add-vo.ts +1 -1
  266. package/models/{calendar-add-redis-list-vo.ts → excel-import-result-dtocalendar-export-dto.ts} +9 -21
  267. package/models/excel-import-result-dtoinspection-standard-import-dto.ts +39 -0
  268. package/models/excel-import-result-dtomaintenance-standard-import-dto.ts +39 -0
  269. package/models/file-dto.ts +3 -3
  270. package/models/get-user-wx200-response.ts +10 -10
  271. package/models/index.ts +35 -13
  272. package/models/inspection-point-item.ts +12 -0
  273. package/models/inspection-standard-add-or-update-vo.ts +3 -6
  274. package/models/inspection-standard-dto.ts +161 -0
  275. package/models/inspection-standard-entity.ts +15 -0
  276. package/models/inspection-standard-import-dto.ts +120 -0
  277. package/models/ipage-access-vo.ts +6 -6
  278. package/models/json-result-excel-import-result-dtocalendar-export-dto.ts +66 -0
  279. package/models/json-result-excel-import-result-dtoinspection-standard-import-dto.ts +66 -0
  280. package/models/json-result-excel-import-result-dtomaintenance-standard-import-dto.ts +66 -0
  281. package/models/{json-result-page-dto-inspection-standard-entity.ts → json-result-list-inspection-standard-entity.ts} +12 -12
  282. package/models/json-result-list-work-order-dept-settings-entity.ts +66 -0
  283. package/models/json-result-page-dto-inspection-standard-dto.ts +66 -0
  284. package/models/{json-result-calendar-add-redis-list-vo.ts → json-result-page-dto-sys-user-msg-dto.ts} +11 -11
  285. package/models/{json-result-sys-user-msg-do.ts → json-result-park-info-dto.ts} +11 -11
  286. package/models/{json-result-page-dto-sys-user-msg-list-dto.ts → json-result-sys-user-msg-dto.ts} +11 -11
  287. package/models/{json-result-space-edit-before-and-after-dto.ts → json-result-work-order-dept-settings-entity.ts} +11 -11
  288. package/models/maintenance-standard-import-dto.ts +120 -0
  289. package/models/{page-dto-inspection-standard-entity.ts → page-dto-inspection-standard-dto.ts} +7 -7
  290. package/models/{page-dto-sys-user-msg-list-dto.ts → page-dto-sys-user-msg-dto.ts} +7 -7
  291. package/models/park-center-attribute-enum.ts +31 -0
  292. package/models/park-info-dto.ts +93 -0
  293. package/models/park-info-edit-vo.ts +45 -0
  294. package/models/park-plat-form-enum.ts +33 -0
  295. package/models/period-detail-resp.ts +6 -0
  296. package/models/plan-add-vo.ts +1 -1
  297. package/models/plan-edit-vo.ts +1 -1
  298. package/models/plan-item-add-vo.ts +1 -1
  299. package/models/plan-item-edit-vo.ts +1 -1
  300. package/models/process-work-order-vo.ts +23 -0
  301. package/models/source-work-order-inspection-dto.ts +8 -3
  302. package/models/space-add-excel-dto.ts +6 -0
  303. package/models/sys-dept.ts +7 -1
  304. package/models/{sys-user-msg-list-dto.ts → sys-user-msg-dto.ts} +36 -28
  305. package/models/system-user-msg-source-type-enum.ts +33 -0
  306. package/models/system-user-msg-type-enum.ts +31 -0
  307. package/models/work-order-add-vo.ts +28 -4
  308. package/models/work-order-circulation-vo.ts +12 -1
  309. package/models/work-order-dept-settings-add-or-update-vo.ts +42 -0
  310. package/models/work-order-dept-settings-entity.ts +77 -0
  311. package/models/work-order-detail-dto.ts +54 -0
  312. package/models/work-order-internal-status-enum.ts +33 -0
  313. package/models/work-order-issue-type-enum.ts +36 -0
  314. package/models/work-order-liability-party-enum.ts +31 -0
  315. package/models/work-order-push-settings-entity.ts +6 -18
  316. package/models/work-order-push-settings-save-or-update-vo.ts +6 -18
  317. package/models/{space-edit-before-and-after-dto.ts → work-order-report-vo.ts} +13 -11
  318. package/models/work-order-settings-type-enum.ts +40 -0
  319. package/models/work-order-staging-data-vo.ts +59 -0
  320. package/models/work-order-type-enum.ts +1 -1
  321. package/package.json +1 -1
  322. package/dist/apis/inspection-api.d.ts +0 -846
  323. package/dist/esm/apis/inspection-api.d.ts +0 -846
  324. package/dist/esm/models/space-edit-before-and-after-dto.d.ts +0 -31
  325. package/dist/esm/models/space-edit-excel-dto.d.ts +0 -78
  326. package/dist/esm/models/sys-user-msg-do.d.ts +0 -90
  327. package/dist/esm/models/sys-user-msg-search-list-vo.d.ts +0 -54
  328. package/dist/models/json-result-page-dto-inspection-standard-entity.d.ts +0 -56
  329. package/dist/models/json-result-page-dto-sys-user-msg-list-dto.d.ts +0 -56
  330. package/dist/models/json-result-space-edit-before-and-after-dto.d.ts +0 -56
  331. package/dist/models/space-edit-before-and-after-dto.d.ts +0 -31
  332. package/dist/models/space-edit-excel-dto.d.ts +0 -78
  333. package/dist/models/sys-user-msg-do.d.ts +0 -90
  334. package/dist/models/sys-user-msg-search-list-vo.d.ts +0 -54
  335. package/models/space-edit-excel-dto.ts +0 -84
  336. package/models/sys-user-msg-do.ts +0 -96
  337. package/models/sys-user-msg-search-list-vo.ts +0 -60
  338. /package/dist/esm/models/{calendar-add-redis-list-vo.js → dept-relation-dto.js} +0 -0
  339. /package/dist/esm/models/{json-result-calendar-add-redis-list-vo.js → dept-relation.js} +0 -0
  340. /package/dist/esm/models/{json-result-page-dto-inspection-standard-entity.js → excel-import-result-dtocalendar-export-dto.js} +0 -0
  341. /package/dist/esm/models/{json-result-page-dto-sys-user-msg-list-dto.js → excel-import-result-dtoinspection-standard-import-dto.js} +0 -0
  342. /package/dist/esm/models/{json-result-space-edit-before-and-after-dto.js → excel-import-result-dtomaintenance-standard-import-dto.js} +0 -0
  343. /package/dist/esm/models/{json-result-sys-user-msg-do.js → inspection-standard-dto.js} +0 -0
  344. /package/dist/esm/models/{page-dto-inspection-standard-entity.js → inspection-standard-import-dto.js} +0 -0
  345. /package/dist/esm/models/{page-dto-sys-user-msg-list-dto.js → json-result-excel-import-result-dtocalendar-export-dto.js} +0 -0
  346. /package/dist/esm/models/{space-edit-before-and-after-dto.js → json-result-excel-import-result-dtoinspection-standard-import-dto.js} +0 -0
  347. /package/dist/esm/models/{space-edit-excel-dto.js → json-result-excel-import-result-dtomaintenance-standard-import-dto.js} +0 -0
  348. /package/dist/esm/models/{sys-user-msg-do.js → json-result-list-inspection-standard-entity.js} +0 -0
  349. /package/dist/esm/models/{sys-user-msg-list-dto.js → json-result-list-work-order-dept-settings-entity.js} +0 -0
  350. /package/dist/esm/models/{sys-user-msg-search-list-vo.js → json-result-page-dto-inspection-standard-dto.js} +0 -0
  351. /package/dist/models/{calendar-add-redis-list-vo.js → dept-relation-dto.js} +0 -0
  352. /package/dist/models/{json-result-calendar-add-redis-list-vo.js → dept-relation.js} +0 -0
  353. /package/dist/models/{json-result-page-dto-inspection-standard-entity.js → excel-import-result-dtocalendar-export-dto.js} +0 -0
  354. /package/dist/models/{json-result-page-dto-sys-user-msg-list-dto.js → excel-import-result-dtoinspection-standard-import-dto.js} +0 -0
  355. /package/dist/models/{json-result-space-edit-before-and-after-dto.js → excel-import-result-dtomaintenance-standard-import-dto.js} +0 -0
  356. /package/dist/models/{json-result-sys-user-msg-do.js → inspection-standard-dto.js} +0 -0
  357. /package/dist/models/{page-dto-inspection-standard-entity.js → inspection-standard-import-dto.js} +0 -0
  358. /package/dist/models/{page-dto-sys-user-msg-list-dto.js → json-result-excel-import-result-dtocalendar-export-dto.js} +0 -0
  359. /package/dist/models/{space-edit-before-and-after-dto.js → json-result-excel-import-result-dtoinspection-standard-import-dto.js} +0 -0
  360. /package/dist/models/{space-edit-excel-dto.js → json-result-excel-import-result-dtomaintenance-standard-import-dto.js} +0 -0
  361. /package/dist/models/{sys-user-msg-do.js → json-result-list-inspection-standard-entity.js} +0 -0
  362. /package/dist/models/{sys-user-msg-list-dto.js → json-result-list-work-order-dept-settings-entity.js} +0 -0
  363. /package/dist/models/{sys-user-msg-search-list-vo.js → json-result-page-dto-inspection-standard-dto.js} +0 -0
@@ -19,7 +19,6 @@ import type { JsonResultListSpacePointDTO } from '../models';
19
19
  import type { JsonResultListSpaceQrCodeDTO } from '../models';
20
20
  import type { JsonResultListSpaceUrlDTO } from '../models';
21
21
  import type { JsonResultSpaceAddRedisListDTO } from '../models';
22
- import type { JsonResultSpaceEditBeforeAndAfterDTO } from '../models';
23
22
  import type { JsonResultSpaceImageDetailDTO } from '../models';
24
23
  import type { SpaceAddPlanVo } from '../models';
25
24
  import type { SpaceAddPointVO } from '../models';
@@ -97,14 +96,6 @@ export declare const SpaceApiAxiosParamCreator: (configuration?: Configuration)
97
96
  * @throws {RequiredError}
98
97
  */
99
98
  spaceEdit: (spaceEditVO: SpaceEditVO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
100
- /**
101
- *
102
- * @summary 查询修改前后数据
103
- * @param {number} parkId
104
- * @param {*} [options] Override http request option.
105
- * @throws {RequiredError}
106
- */
107
- spaceEditBeforeAndAfter: (parkId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
108
99
  /**
109
100
  *
110
101
  * @summary /导出修改Excel模板
@@ -115,29 +106,6 @@ export declare const SpaceApiAxiosParamCreator: (configuration?: Configuration)
115
106
  * @throws {RequiredError}
116
107
  */
117
108
  spaceEditExportTemplate: (parkId: number, spaceIds?: Array<number>, language?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
118
- /**
119
- *
120
- * @summary /修改excel入数据库
121
- * @param {*} [options] Override http request option.
122
- * @throws {RequiredError}
123
- */
124
- spaceEditImportConfirm: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
125
- /**
126
- *
127
- * @summary 修改---结果确认
128
- * @param {*} [options] Override http request option.
129
- * @throws {RequiredError}
130
- */
131
- spaceEditImportPreview: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
132
- /**
133
- *
134
- * @summary 修改---上传文件
135
- * @param {string} [language]
136
- * @param {File} [file]
137
- * @param {*} [options] Override http request option.
138
- * @throws {RequiredError}
139
- */
140
- spaceEditImportUpload: (language?: string, file?: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
141
109
  /**
142
110
  *
143
111
  * @summary 编辑平面图
@@ -304,14 +272,6 @@ export declare const SpaceApiFp: (configuration?: Configuration) => {
304
272
  * @throws {RequiredError}
305
273
  */
306
274
  spaceEdit(spaceEditVO: SpaceEditVO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
307
- /**
308
- *
309
- * @summary 查询修改前后数据
310
- * @param {number} parkId
311
- * @param {*} [options] Override http request option.
312
- * @throws {RequiredError}
313
- */
314
- spaceEditBeforeAndAfter(parkId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultSpaceEditBeforeAndAfterDTO>>;
315
275
  /**
316
276
  *
317
277
  * @summary /导出修改Excel模板
@@ -322,29 +282,6 @@ export declare const SpaceApiFp: (configuration?: Configuration) => {
322
282
  * @throws {RequiredError}
323
283
  */
324
284
  spaceEditExportTemplate(parkId: number, spaceIds?: Array<number>, language?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
325
- /**
326
- *
327
- * @summary /修改excel入数据库
328
- * @param {*} [options] Override http request option.
329
- * @throws {RequiredError}
330
- */
331
- spaceEditImportConfirm(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
332
- /**
333
- *
334
- * @summary 修改---结果确认
335
- * @param {*} [options] Override http request option.
336
- * @throws {RequiredError}
337
- */
338
- spaceEditImportPreview(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
339
- /**
340
- *
341
- * @summary 修改---上传文件
342
- * @param {string} [language]
343
- * @param {File} [file]
344
- * @param {*} [options] Override http request option.
345
- * @throws {RequiredError}
346
- */
347
- spaceEditImportUpload(language?: string, file?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
348
285
  /**
349
286
  *
350
287
  * @summary 编辑平面图
@@ -510,14 +447,6 @@ export declare const SpaceApiFactory: (configuration?: Configuration, basePath?:
510
447
  * @throws {RequiredError}
511
448
  */
512
449
  spaceEdit(requestParameters: SpaceApiSpaceEditRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
513
- /**
514
- *
515
- * @summary 查询修改前后数据
516
- * @param {SpaceApiSpaceEditBeforeAndAfterRequest} requestParameters Request parameters.
517
- * @param {*} [options] Override http request option.
518
- * @throws {RequiredError}
519
- */
520
- spaceEditBeforeAndAfter(requestParameters: SpaceApiSpaceEditBeforeAndAfterRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultSpaceEditBeforeAndAfterDTO>;
521
450
  /**
522
451
  *
523
452
  * @summary /导出修改Excel模板
@@ -526,28 +455,6 @@ export declare const SpaceApiFactory: (configuration?: Configuration, basePath?:
526
455
  * @throws {RequiredError}
527
456
  */
528
457
  spaceEditExportTemplate(requestParameters: SpaceApiSpaceEditExportTemplateRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
529
- /**
530
- *
531
- * @summary /修改excel入数据库
532
- * @param {*} [options] Override http request option.
533
- * @throws {RequiredError}
534
- */
535
- spaceEditImportConfirm(options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
536
- /**
537
- *
538
- * @summary 修改---结果确认
539
- * @param {*} [options] Override http request option.
540
- * @throws {RequiredError}
541
- */
542
- spaceEditImportPreview(options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
543
- /**
544
- *
545
- * @summary 修改---上传文件
546
- * @param {SpaceApiSpaceEditImportUploadRequest} requestParameters Request parameters.
547
- * @param {*} [options] Override http request option.
548
- * @throws {RequiredError}
549
- */
550
- spaceEditImportUpload(requestParameters?: SpaceApiSpaceEditImportUploadRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
551
458
  /**
552
459
  *
553
460
  * @summary 编辑平面图
@@ -742,19 +649,6 @@ export interface SpaceApiSpaceEditRequest {
742
649
  */
743
650
  readonly spaceEditVO: SpaceEditVO;
744
651
  }
745
- /**
746
- * Request parameters for spaceEditBeforeAndAfter operation in SpaceApi.
747
- * @export
748
- * @interface SpaceApiSpaceEditBeforeAndAfterRequest
749
- */
750
- export interface SpaceApiSpaceEditBeforeAndAfterRequest {
751
- /**
752
- *
753
- * @type {number}
754
- * @memberof SpaceApiSpaceEditBeforeAndAfter
755
- */
756
- readonly parkId: number;
757
- }
758
652
  /**
759
653
  * Request parameters for spaceEditExportTemplate operation in SpaceApi.
760
654
  * @export
@@ -780,25 +674,6 @@ export interface SpaceApiSpaceEditExportTemplateRequest {
780
674
  */
781
675
  readonly language?: string;
782
676
  }
783
- /**
784
- * Request parameters for spaceEditImportUpload operation in SpaceApi.
785
- * @export
786
- * @interface SpaceApiSpaceEditImportUploadRequest
787
- */
788
- export interface SpaceApiSpaceEditImportUploadRequest {
789
- /**
790
- *
791
- * @type {string}
792
- * @memberof SpaceApiSpaceEditImportUpload
793
- */
794
- readonly language?: string;
795
- /**
796
- *
797
- * @type {File}
798
- * @memberof SpaceApiSpaceEditImportUpload
799
- */
800
- readonly file?: File;
801
- }
802
677
  /**
803
678
  * Request parameters for spaceEditSpacePlanUrl operation in SpaceApi.
804
679
  * @export
@@ -1033,15 +908,6 @@ export declare class SpaceApi extends BaseAPI {
1033
908
  * @memberof SpaceApi
1034
909
  */
1035
910
  spaceEdit(requestParameters: SpaceApiSpaceEditRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any>>;
1036
- /**
1037
- *
1038
- * @summary 查询修改前后数据
1039
- * @param {SpaceApiSpaceEditBeforeAndAfterRequest} requestParameters Request parameters.
1040
- * @param {*} [options] Override http request option.
1041
- * @throws {RequiredError}
1042
- * @memberof SpaceApi
1043
- */
1044
- spaceEditBeforeAndAfter(requestParameters: SpaceApiSpaceEditBeforeAndAfterRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultSpaceEditBeforeAndAfterDTO, any>>;
1045
911
  /**
1046
912
  *
1047
913
  * @summary /导出修改Excel模板
@@ -1051,31 +917,6 @@ export declare class SpaceApi extends BaseAPI {
1051
917
  * @memberof SpaceApi
1052
918
  */
1053
919
  spaceEditExportTemplate(requestParameters: SpaceApiSpaceEditExportTemplateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1054
- /**
1055
- *
1056
- * @summary /修改excel入数据库
1057
- * @param {*} [options] Override http request option.
1058
- * @throws {RequiredError}
1059
- * @memberof SpaceApi
1060
- */
1061
- spaceEditImportConfirm(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any>>;
1062
- /**
1063
- *
1064
- * @summary 修改---结果确认
1065
- * @param {*} [options] Override http request option.
1066
- * @throws {RequiredError}
1067
- * @memberof SpaceApi
1068
- */
1069
- spaceEditImportPreview(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any>>;
1070
- /**
1071
- *
1072
- * @summary 修改---上传文件
1073
- * @param {SpaceApiSpaceEditImportUploadRequest} requestParameters Request parameters.
1074
- * @param {*} [options] Override http request option.
1075
- * @throws {RequiredError}
1076
- * @memberof SpaceApi
1077
- */
1078
- spaceEditImportUpload(requestParameters?: SpaceApiSpaceEditImportUploadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResult, any>>;
1079
920
  /**
1080
921
  *
1081
922
  * @summary 编辑平面图
@@ -301,40 +301,6 @@ export const SpaceApiAxiosParamCreator = function (configuration) {
301
301
  options: localVarRequestOptions,
302
302
  };
303
303
  }),
304
- /**
305
- *
306
- * @summary 查询修改前后数据
307
- * @param {number} parkId
308
- * @param {*} [options] Override http request option.
309
- * @throws {RequiredError}
310
- */
311
- spaceEditBeforeAndAfter: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
312
- // verify required parameter 'parkId' is not null or undefined
313
- assertParamExists('spaceEditBeforeAndAfter', 'parkId', parkId);
314
- const localVarPath = `/gizone/space/get-edit-before-and-after`;
315
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
316
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
317
- let baseOptions;
318
- if (configuration) {
319
- baseOptions = configuration.baseOptions;
320
- }
321
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
322
- const localVarHeaderParameter = {};
323
- const localVarQueryParameter = {};
324
- // authentication tokenScheme required
325
- // http bearer authentication required
326
- yield setBearerAuthToObject(localVarHeaderParameter, configuration);
327
- if (parkId !== undefined) {
328
- localVarQueryParameter['parkId'] = parkId;
329
- }
330
- setSearchParams(localVarUrlObj, localVarQueryParameter);
331
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
332
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
333
- return {
334
- url: toPathString(localVarUrlObj),
335
- options: localVarRequestOptions,
336
- };
337
- }),
338
304
  /**
339
305
  *
340
306
  * @summary /导出修改Excel模板
@@ -377,101 +343,6 @@ export const SpaceApiAxiosParamCreator = function (configuration) {
377
343
  options: localVarRequestOptions,
378
344
  };
379
345
  }),
380
- /**
381
- *
382
- * @summary /修改excel入数据库
383
- * @param {*} [options] Override http request option.
384
- * @throws {RequiredError}
385
- */
386
- spaceEditImportConfirm: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
387
- const localVarPath = `/gizone/space/editImport`;
388
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
389
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
390
- let baseOptions;
391
- if (configuration) {
392
- baseOptions = configuration.baseOptions;
393
- }
394
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
395
- const localVarHeaderParameter = {};
396
- const localVarQueryParameter = {};
397
- // authentication tokenScheme required
398
- // http bearer authentication required
399
- yield setBearerAuthToObject(localVarHeaderParameter, configuration);
400
- setSearchParams(localVarUrlObj, localVarQueryParameter);
401
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
402
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
403
- return {
404
- url: toPathString(localVarUrlObj),
405
- options: localVarRequestOptions,
406
- };
407
- }),
408
- /**
409
- *
410
- * @summary 修改---结果确认
411
- * @param {*} [options] Override http request option.
412
- * @throws {RequiredError}
413
- */
414
- spaceEditImportPreview: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
415
- const localVarPath = `/gizone/space/editRedisList`;
416
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
417
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
418
- let baseOptions;
419
- if (configuration) {
420
- baseOptions = configuration.baseOptions;
421
- }
422
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
423
- const localVarHeaderParameter = {};
424
- const localVarQueryParameter = {};
425
- // authentication tokenScheme required
426
- // http bearer authentication required
427
- yield setBearerAuthToObject(localVarHeaderParameter, configuration);
428
- setSearchParams(localVarUrlObj, localVarQueryParameter);
429
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
430
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
431
- return {
432
- url: toPathString(localVarUrlObj),
433
- options: localVarRequestOptions,
434
- };
435
- }),
436
- /**
437
- *
438
- * @summary 修改---上传文件
439
- * @param {string} [language]
440
- * @param {File} [file]
441
- * @param {*} [options] Override http request option.
442
- * @throws {RequiredError}
443
- */
444
- spaceEditImportUpload: (language_1, file_1, ...args_1) => __awaiter(this, [language_1, file_1, ...args_1], void 0, function* (language, file, options = {}) {
445
- const localVarPath = `/gizone/space/editSpaceFileToRedis`;
446
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
447
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
448
- let baseOptions;
449
- if (configuration) {
450
- baseOptions = configuration.baseOptions;
451
- }
452
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
453
- const localVarHeaderParameter = {};
454
- const localVarQueryParameter = {};
455
- const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
456
- // authentication tokenScheme required
457
- // http bearer authentication required
458
- yield setBearerAuthToObject(localVarHeaderParameter, configuration);
459
- if (language !== undefined) {
460
- localVarQueryParameter['language'] = language;
461
- }
462
- if (file !== undefined) {
463
- localVarFormParams.append('file', file);
464
- }
465
- localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
466
- setSearchParams(localVarUrlObj, localVarQueryParameter);
467
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
468
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
469
- localVarRequestOptions.data = localVarFormParams;
470
- return {
471
- url: toPathString(localVarUrlObj),
472
- options: localVarRequestOptions,
473
- };
474
- }),
475
346
  /**
476
347
  *
477
348
  * @summary 编辑平面图
@@ -1005,22 +876,6 @@ export const SpaceApiFp = function (configuration) {
1005
876
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1006
877
  });
1007
878
  },
1008
- /**
1009
- *
1010
- * @summary 查询修改前后数据
1011
- * @param {number} parkId
1012
- * @param {*} [options] Override http request option.
1013
- * @throws {RequiredError}
1014
- */
1015
- spaceEditBeforeAndAfter(parkId, options) {
1016
- return __awaiter(this, void 0, void 0, function* () {
1017
- var _a, _b, _c;
1018
- const localVarAxiosArgs = yield localVarAxiosParamCreator.spaceEditBeforeAndAfter(parkId, options);
1019
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1020
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SpaceApi.spaceEditBeforeAndAfter']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1021
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1022
- });
1023
- },
1024
879
  /**
1025
880
  *
1026
881
  * @summary /导出修改Excel模板
@@ -1039,53 +894,6 @@ export const SpaceApiFp = function (configuration) {
1039
894
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1040
895
  });
1041
896
  },
1042
- /**
1043
- *
1044
- * @summary /修改excel入数据库
1045
- * @param {*} [options] Override http request option.
1046
- * @throws {RequiredError}
1047
- */
1048
- spaceEditImportConfirm(options) {
1049
- return __awaiter(this, void 0, void 0, function* () {
1050
- var _a, _b, _c;
1051
- const localVarAxiosArgs = yield localVarAxiosParamCreator.spaceEditImportConfirm(options);
1052
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1053
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SpaceApi.spaceEditImportConfirm']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1054
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1055
- });
1056
- },
1057
- /**
1058
- *
1059
- * @summary 修改---结果确认
1060
- * @param {*} [options] Override http request option.
1061
- * @throws {RequiredError}
1062
- */
1063
- spaceEditImportPreview(options) {
1064
- return __awaiter(this, void 0, void 0, function* () {
1065
- var _a, _b, _c;
1066
- const localVarAxiosArgs = yield localVarAxiosParamCreator.spaceEditImportPreview(options);
1067
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1068
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SpaceApi.spaceEditImportPreview']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1069
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1070
- });
1071
- },
1072
- /**
1073
- *
1074
- * @summary 修改---上传文件
1075
- * @param {string} [language]
1076
- * @param {File} [file]
1077
- * @param {*} [options] Override http request option.
1078
- * @throws {RequiredError}
1079
- */
1080
- spaceEditImportUpload(language, file, options) {
1081
- return __awaiter(this, void 0, void 0, function* () {
1082
- var _a, _b, _c;
1083
- const localVarAxiosArgs = yield localVarAxiosParamCreator.spaceEditImportUpload(language, file, options);
1084
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1085
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SpaceApi.spaceEditImportUpload']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1086
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1087
- });
1088
- },
1089
897
  /**
1090
898
  *
1091
899
  * @summary 编辑平面图
@@ -1366,16 +1174,6 @@ export const SpaceApiFactory = function (configuration, basePath, axios) {
1366
1174
  spaceEdit(requestParameters, options) {
1367
1175
  return localVarFp.spaceEdit(requestParameters.spaceEditVO, options).then((request) => request(axios, basePath));
1368
1176
  },
1369
- /**
1370
- *
1371
- * @summary 查询修改前后数据
1372
- * @param {SpaceApiSpaceEditBeforeAndAfterRequest} requestParameters Request parameters.
1373
- * @param {*} [options] Override http request option.
1374
- * @throws {RequiredError}
1375
- */
1376
- spaceEditBeforeAndAfter(requestParameters, options) {
1377
- return localVarFp.spaceEditBeforeAndAfter(requestParameters.parkId, options).then((request) => request(axios, basePath));
1378
- },
1379
1177
  /**
1380
1178
  *
1381
1179
  * @summary /导出修改Excel模板
@@ -1386,34 +1184,6 @@ export const SpaceApiFactory = function (configuration, basePath, axios) {
1386
1184
  spaceEditExportTemplate(requestParameters, options) {
1387
1185
  return localVarFp.spaceEditExportTemplate(requestParameters.parkId, requestParameters.spaceIds, requestParameters.language, options).then((request) => request(axios, basePath));
1388
1186
  },
1389
- /**
1390
- *
1391
- * @summary /修改excel入数据库
1392
- * @param {*} [options] Override http request option.
1393
- * @throws {RequiredError}
1394
- */
1395
- spaceEditImportConfirm(options) {
1396
- return localVarFp.spaceEditImportConfirm(options).then((request) => request(axios, basePath));
1397
- },
1398
- /**
1399
- *
1400
- * @summary 修改---结果确认
1401
- * @param {*} [options] Override http request option.
1402
- * @throws {RequiredError}
1403
- */
1404
- spaceEditImportPreview(options) {
1405
- return localVarFp.spaceEditImportPreview(options).then((request) => request(axios, basePath));
1406
- },
1407
- /**
1408
- *
1409
- * @summary 修改---上传文件
1410
- * @param {SpaceApiSpaceEditImportUploadRequest} requestParameters Request parameters.
1411
- * @param {*} [options] Override http request option.
1412
- * @throws {RequiredError}
1413
- */
1414
- spaceEditImportUpload(requestParameters = {}, options) {
1415
- return localVarFp.spaceEditImportUpload(requestParameters.language, requestParameters.file, options).then((request) => request(axios, basePath));
1416
- },
1417
1187
  /**
1418
1188
  *
1419
1189
  * @summary 编辑平面图
@@ -1630,17 +1400,6 @@ export class SpaceApi extends BaseAPI {
1630
1400
  spaceEdit(requestParameters, options) {
1631
1401
  return SpaceApiFp(this.configuration).spaceEdit(requestParameters.spaceEditVO, options).then((request) => request(this.axios, this.basePath));
1632
1402
  }
1633
- /**
1634
- *
1635
- * @summary 查询修改前后数据
1636
- * @param {SpaceApiSpaceEditBeforeAndAfterRequest} requestParameters Request parameters.
1637
- * @param {*} [options] Override http request option.
1638
- * @throws {RequiredError}
1639
- * @memberof SpaceApi
1640
- */
1641
- spaceEditBeforeAndAfter(requestParameters, options) {
1642
- return SpaceApiFp(this.configuration).spaceEditBeforeAndAfter(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
1643
- }
1644
1403
  /**
1645
1404
  *
1646
1405
  * @summary /导出修改Excel模板
@@ -1652,37 +1411,6 @@ export class SpaceApi extends BaseAPI {
1652
1411
  spaceEditExportTemplate(requestParameters, options) {
1653
1412
  return SpaceApiFp(this.configuration).spaceEditExportTemplate(requestParameters.parkId, requestParameters.spaceIds, requestParameters.language, options).then((request) => request(this.axios, this.basePath));
1654
1413
  }
1655
- /**
1656
- *
1657
- * @summary /修改excel入数据库
1658
- * @param {*} [options] Override http request option.
1659
- * @throws {RequiredError}
1660
- * @memberof SpaceApi
1661
- */
1662
- spaceEditImportConfirm(options) {
1663
- return SpaceApiFp(this.configuration).spaceEditImportConfirm(options).then((request) => request(this.axios, this.basePath));
1664
- }
1665
- /**
1666
- *
1667
- * @summary 修改---结果确认
1668
- * @param {*} [options] Override http request option.
1669
- * @throws {RequiredError}
1670
- * @memberof SpaceApi
1671
- */
1672
- spaceEditImportPreview(options) {
1673
- return SpaceApiFp(this.configuration).spaceEditImportPreview(options).then((request) => request(this.axios, this.basePath));
1674
- }
1675
- /**
1676
- *
1677
- * @summary 修改---上传文件
1678
- * @param {SpaceApiSpaceEditImportUploadRequest} requestParameters Request parameters.
1679
- * @param {*} [options] Override http request option.
1680
- * @throws {RequiredError}
1681
- * @memberof SpaceApi
1682
- */
1683
- spaceEditImportUpload(requestParameters = {}, options) {
1684
- return SpaceApiFp(this.configuration).spaceEditImportUpload(requestParameters.language, requestParameters.file, options).then((request) => request(this.axios, this.basePath));
1685
- }
1686
1414
  /**
1687
1415
  *
1688
1416
  * @summary 编辑平面图