@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
@@ -34,32 +34,24 @@ export const CalendarApiAxiosParamCreator = function (configuration) {
34
34
  return {
35
35
  /**
36
36
  *
37
- * @summary 导出
38
- * @param {number} year
39
- * @param {string} [language]
37
+ * @summary 导入-确认
40
38
  * @param {*} [options] Override http request option.
41
39
  * @throws {RequiredError}
42
40
  */
43
- exportList2: (year_1, language_1, ...args_1) => __awaiter(this, [year_1, language_1, ...args_1], void 0, function* (year, language, options = {}) {
44
- // verify required parameter 'year' is not null or undefined
45
- assertParamExists('exportList2', 'year', year);
46
- const localVarPath = `/calendar/exportList/{year}`
47
- .replace(`{${"year"}}`, encodeURIComponent(String(year)));
41
+ calendarBatchImportConfirm: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
42
+ const localVarPath = `/calendar/batchImport/confirm`;
48
43
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
49
44
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
50
45
  let baseOptions;
51
46
  if (configuration) {
52
47
  baseOptions = configuration.baseOptions;
53
48
  }
54
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
49
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
55
50
  const localVarHeaderParameter = {};
56
51
  const localVarQueryParameter = {};
57
52
  // authentication tokenScheme required
58
53
  // http bearer authentication required
59
54
  yield setBearerAuthToObject(localVarHeaderParameter, configuration);
60
- if (language !== undefined) {
61
- localVarQueryParameter['language'] = language;
62
- }
63
55
  setSearchParams(localVarUrlObj, localVarQueryParameter);
64
56
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
65
57
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -70,12 +62,12 @@ export const CalendarApiAxiosParamCreator = function (configuration) {
70
62
  }),
71
63
  /**
72
64
  *
73
- * @summary 导入-入库
65
+ * @summary 导入-预览
74
66
  * @param {*} [options] Override http request option.
75
67
  * @throws {RequiredError}
76
68
  */
77
- exportMysql1: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
78
- const localVarPath = `/calendar/exportMysql`;
69
+ calendarBatchImportPreView: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
70
+ const localVarPath = `/calendar/batchImport/preView`;
79
71
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
80
72
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
81
73
  let baseOptions;
@@ -98,12 +90,13 @@ export const CalendarApiAxiosParamCreator = function (configuration) {
98
90
  }),
99
91
  /**
100
92
  *
101
- * @summary 导入结果确认
93
+ * @summary 导入-下载模板
94
+ * @param {string} [language]
102
95
  * @param {*} [options] Override http request option.
103
96
  * @throws {RequiredError}
104
97
  */
105
- exportRedisList1: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
106
- const localVarPath = `/calendar/exportRedisList`;
98
+ calendarBatchImportTemplate: (language_1, ...args_1) => __awaiter(this, [language_1, ...args_1], void 0, function* (language, options = {}) {
99
+ const localVarPath = `/calendar/batchImport/template`;
107
100
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
108
101
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
109
102
  let baseOptions;
@@ -116,6 +109,9 @@ export const CalendarApiAxiosParamCreator = function (configuration) {
116
109
  // authentication tokenScheme required
117
110
  // http bearer authentication required
118
111
  yield setBearerAuthToObject(localVarHeaderParameter, configuration);
112
+ if (language !== undefined) {
113
+ localVarQueryParameter['language'] = language;
114
+ }
119
115
  setSearchParams(localVarUrlObj, localVarQueryParameter);
120
116
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
121
117
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -126,35 +122,46 @@ export const CalendarApiAxiosParamCreator = function (configuration) {
126
122
  }),
127
123
  /**
128
124
  *
129
- * @summary 获取日历设置
130
- * @param {string} date
125
+ * @summary 导入-上传文件
126
+ * @param {number} parkId 园区id
127
+ * @param {File} file
128
+ * @param {string} [language] 语言
131
129
  * @param {*} [options] Override http request option.
132
130
  * @throws {RequiredError}
133
131
  */
134
- getByDate: (date_1, ...args_1) => __awaiter(this, [date_1, ...args_1], void 0, function* (date, options = {}) {
135
- // verify required parameter 'date' is not null or undefined
136
- assertParamExists('getByDate', 'date', date);
137
- const localVarPath = `/calendar/getByDate`;
132
+ calendarBatchImportUpload: (parkId_1, file_1, language_1, ...args_1) => __awaiter(this, [parkId_1, file_1, language_1, ...args_1], void 0, function* (parkId, file, language, options = {}) {
133
+ // verify required parameter 'parkId' is not null or undefined
134
+ assertParamExists('calendarBatchImportUpload', 'parkId', parkId);
135
+ // verify required parameter 'file' is not null or undefined
136
+ assertParamExists('calendarBatchImportUpload', 'file', file);
137
+ const localVarPath = `/calendar/batchImport/upload`;
138
138
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
139
139
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
140
140
  let baseOptions;
141
141
  if (configuration) {
142
142
  baseOptions = configuration.baseOptions;
143
143
  }
144
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
144
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
145
145
  const localVarHeaderParameter = {};
146
146
  const localVarQueryParameter = {};
147
+ const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
147
148
  // authentication tokenScheme required
148
149
  // http bearer authentication required
149
150
  yield setBearerAuthToObject(localVarHeaderParameter, configuration);
150
- if (date !== undefined) {
151
- localVarQueryParameter['date'] = (date instanceof Date) ?
152
- date.toISOString() :
153
- date;
151
+ if (parkId !== undefined) {
152
+ localVarFormParams.append('parkId', parkId);
153
+ }
154
+ if (language !== undefined) {
155
+ localVarFormParams.append('language', language);
156
+ }
157
+ if (file !== undefined) {
158
+ localVarFormParams.append('file', file);
154
159
  }
160
+ localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
155
161
  setSearchParams(localVarUrlObj, localVarQueryParameter);
156
162
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
157
163
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
164
+ localVarRequestOptions.data = localVarFormParams;
158
165
  return {
159
166
  url: toPathString(localVarUrlObj),
160
167
  options: localVarRequestOptions,
@@ -162,21 +169,24 @@ export const CalendarApiAxiosParamCreator = function (configuration) {
162
169
  }),
163
170
  /**
164
171
  *
165
- * @summary 导入redis
172
+ * @summary 导出
173
+ * @param {number} year
166
174
  * @param {string} [language]
167
- * @param {SaveWaterMeterBatchRequest} [saveWaterMeterBatchRequest]
168
175
  * @param {*} [options] Override http request option.
169
176
  * @throws {RequiredError}
170
177
  */
171
- saveBatchExport1: (language_1, saveWaterMeterBatchRequest_1, ...args_1) => __awaiter(this, [language_1, saveWaterMeterBatchRequest_1, ...args_1], void 0, function* (language, saveWaterMeterBatchRequest, options = {}) {
172
- const localVarPath = `/calendar/saveBatchExport`;
178
+ calendarExport: (year_1, language_1, ...args_1) => __awaiter(this, [year_1, language_1, ...args_1], void 0, function* (year, language, options = {}) {
179
+ // verify required parameter 'year' is not null or undefined
180
+ assertParamExists('calendarExport', 'year', year);
181
+ const localVarPath = `/calendar/export/{year}`
182
+ .replace(`{${"year"}}`, encodeURIComponent(String(year)));
173
183
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
174
184
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
175
185
  let baseOptions;
176
186
  if (configuration) {
177
187
  baseOptions = configuration.baseOptions;
178
188
  }
179
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
189
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
180
190
  const localVarHeaderParameter = {};
181
191
  const localVarQueryParameter = {};
182
192
  // authentication tokenScheme required
@@ -185,11 +195,9 @@ export const CalendarApiAxiosParamCreator = function (configuration) {
185
195
  if (language !== undefined) {
186
196
  localVarQueryParameter['language'] = language;
187
197
  }
188
- localVarHeaderParameter['Content-Type'] = 'application/json';
189
198
  setSearchParams(localVarUrlObj, localVarQueryParameter);
190
199
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
191
200
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
192
- localVarRequestOptions.data = serializeDataIfNeeded(saveWaterMeterBatchRequest, localVarRequestOptions, configuration);
193
201
  return {
194
202
  url: toPathString(localVarUrlObj),
195
203
  options: localVarRequestOptions,
@@ -197,14 +205,15 @@ export const CalendarApiAxiosParamCreator = function (configuration) {
197
205
  }),
198
206
  /**
199
207
  *
200
- * @summary 根据时间区间查询
201
- * @param {string} [start] 开始时间
202
- * @param {string} [end] 结束时间
208
+ * @summary 获取日历设置
209
+ * @param {string} date
203
210
  * @param {*} [options] Override http request option.
204
211
  * @throws {RequiredError}
205
212
  */
206
- sectionQuery: (start_1, end_1, ...args_1) => __awaiter(this, [start_1, end_1, ...args_1], void 0, function* (start, end, options = {}) {
207
- const localVarPath = `/calendar/sectionQuery`;
213
+ getByDate: (date_1, ...args_1) => __awaiter(this, [date_1, ...args_1], void 0, function* (date, options = {}) {
214
+ // verify required parameter 'date' is not null or undefined
215
+ assertParamExists('getByDate', 'date', date);
216
+ const localVarPath = `/calendar/getByDate`;
208
217
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
209
218
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
210
219
  let baseOptions;
@@ -217,15 +226,10 @@ export const CalendarApiAxiosParamCreator = function (configuration) {
217
226
  // authentication tokenScheme required
218
227
  // http bearer authentication required
219
228
  yield setBearerAuthToObject(localVarHeaderParameter, configuration);
220
- if (start !== undefined) {
221
- localVarQueryParameter['start'] = (start instanceof Date) ?
222
- start.toISOString() :
223
- start;
224
- }
225
- if (end !== undefined) {
226
- localVarQueryParameter['end'] = (end instanceof Date) ?
227
- end.toISOString() :
228
- end;
229
+ if (date !== undefined) {
230
+ localVarQueryParameter['date'] = (date instanceof Date) ?
231
+ date.toISOString() :
232
+ date;
229
233
  }
230
234
  setSearchParams(localVarUrlObj, localVarQueryParameter);
231
235
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -237,32 +241,39 @@ export const CalendarApiAxiosParamCreator = function (configuration) {
237
241
  }),
238
242
  /**
239
243
  *
240
- * @summary 修改日期
241
- * @param {CalendarSaveUpdateDto} calendarSaveUpdateDto
244
+ * @summary 根据时间区间查询
245
+ * @param {string} [start] 开始时间
246
+ * @param {string} [end] 结束时间
242
247
  * @param {*} [options] Override http request option.
243
248
  * @throws {RequiredError}
244
249
  */
245
- updateOrAdd: (calendarSaveUpdateDto_1, ...args_1) => __awaiter(this, [calendarSaveUpdateDto_1, ...args_1], void 0, function* (calendarSaveUpdateDto, options = {}) {
246
- // verify required parameter 'calendarSaveUpdateDto' is not null or undefined
247
- assertParamExists('updateOrAdd', 'calendarSaveUpdateDto', calendarSaveUpdateDto);
248
- const localVarPath = `/calendar/updateOrAdd`;
250
+ sectionQuery: (start_1, end_1, ...args_1) => __awaiter(this, [start_1, end_1, ...args_1], void 0, function* (start, end, options = {}) {
251
+ const localVarPath = `/calendar/sectionQuery`;
249
252
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
250
253
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
251
254
  let baseOptions;
252
255
  if (configuration) {
253
256
  baseOptions = configuration.baseOptions;
254
257
  }
255
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
258
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
256
259
  const localVarHeaderParameter = {};
257
260
  const localVarQueryParameter = {};
258
261
  // authentication tokenScheme required
259
262
  // http bearer authentication required
260
263
  yield setBearerAuthToObject(localVarHeaderParameter, configuration);
261
- localVarHeaderParameter['Content-Type'] = 'application/json';
264
+ if (start !== undefined) {
265
+ localVarQueryParameter['start'] = (start instanceof Date) ?
266
+ start.toISOString() :
267
+ start;
268
+ }
269
+ if (end !== undefined) {
270
+ localVarQueryParameter['end'] = (end instanceof Date) ?
271
+ end.toISOString() :
272
+ end;
273
+ }
262
274
  setSearchParams(localVarUrlObj, localVarQueryParameter);
263
275
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
264
276
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
265
- localVarRequestOptions.data = serializeDataIfNeeded(calendarSaveUpdateDto, localVarRequestOptions, configuration);
266
277
  return {
267
278
  url: toPathString(localVarUrlObj),
268
279
  options: localVarRequestOptions,
@@ -270,31 +281,32 @@ export const CalendarApiAxiosParamCreator = function (configuration) {
270
281
  }),
271
282
  /**
272
283
  *
273
- * @summary 导入模板
274
- * @param {string} [language]
284
+ * @summary 修改日期
285
+ * @param {CalendarSaveUpdateDto} calendarSaveUpdateDto
275
286
  * @param {*} [options] Override http request option.
276
287
  * @throws {RequiredError}
277
288
  */
278
- uploadAdd4: (language_1, ...args_1) => __awaiter(this, [language_1, ...args_1], void 0, function* (language, options = {}) {
279
- const localVarPath = `/calendar/uploadAdd`;
289
+ updateOrAdd: (calendarSaveUpdateDto_1, ...args_1) => __awaiter(this, [calendarSaveUpdateDto_1, ...args_1], void 0, function* (calendarSaveUpdateDto, options = {}) {
290
+ // verify required parameter 'calendarSaveUpdateDto' is not null or undefined
291
+ assertParamExists('updateOrAdd', 'calendarSaveUpdateDto', calendarSaveUpdateDto);
292
+ const localVarPath = `/calendar/updateOrAdd`;
280
293
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
281
294
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
282
295
  let baseOptions;
283
296
  if (configuration) {
284
297
  baseOptions = configuration.baseOptions;
285
298
  }
286
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
299
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
287
300
  const localVarHeaderParameter = {};
288
301
  const localVarQueryParameter = {};
289
302
  // authentication tokenScheme required
290
303
  // http bearer authentication required
291
304
  yield setBearerAuthToObject(localVarHeaderParameter, configuration);
292
- if (language !== undefined) {
293
- localVarQueryParameter['language'] = language;
294
- }
305
+ localVarHeaderParameter['Content-Type'] = 'application/json';
295
306
  setSearchParams(localVarUrlObj, localVarQueryParameter);
296
307
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
297
308
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
309
+ localVarRequestOptions.data = serializeDataIfNeeded(calendarSaveUpdateDto, localVarRequestOptions, configuration);
298
310
  return {
299
311
  url: toPathString(localVarUrlObj),
300
312
  options: localVarRequestOptions,
@@ -311,130 +323,131 @@ export const CalendarApiFp = function (configuration) {
311
323
  return {
312
324
  /**
313
325
  *
314
- * @summary 导出
315
- * @param {number} year
316
- * @param {string} [language]
326
+ * @summary 导入-确认
317
327
  * @param {*} [options] Override http request option.
318
328
  * @throws {RequiredError}
319
329
  */
320
- exportList2(year, language, options) {
330
+ calendarBatchImportConfirm(options) {
321
331
  return __awaiter(this, void 0, void 0, function* () {
322
332
  var _a, _b, _c;
323
- const localVarAxiosArgs = yield localVarAxiosParamCreator.exportList2(year, language, options);
333
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.calendarBatchImportConfirm(options);
324
334
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
325
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CalendarApi.exportList2']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
335
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CalendarApi.calendarBatchImportConfirm']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
326
336
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
327
337
  });
328
338
  },
329
339
  /**
330
340
  *
331
- * @summary 导入-入库
341
+ * @summary 导入-预览
332
342
  * @param {*} [options] Override http request option.
333
343
  * @throws {RequiredError}
334
344
  */
335
- exportMysql1(options) {
345
+ calendarBatchImportPreView(options) {
336
346
  return __awaiter(this, void 0, void 0, function* () {
337
347
  var _a, _b, _c;
338
- const localVarAxiosArgs = yield localVarAxiosParamCreator.exportMysql1(options);
348
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.calendarBatchImportPreView(options);
339
349
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
340
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CalendarApi.exportMysql1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
350
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CalendarApi.calendarBatchImportPreView']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
341
351
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
342
352
  });
343
353
  },
344
354
  /**
345
355
  *
346
- * @summary 导入结果确认
356
+ * @summary 导入-下载模板
357
+ * @param {string} [language]
347
358
  * @param {*} [options] Override http request option.
348
359
  * @throws {RequiredError}
349
360
  */
350
- exportRedisList1(options) {
361
+ calendarBatchImportTemplate(language, options) {
351
362
  return __awaiter(this, void 0, void 0, function* () {
352
363
  var _a, _b, _c;
353
- const localVarAxiosArgs = yield localVarAxiosParamCreator.exportRedisList1(options);
364
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.calendarBatchImportTemplate(language, options);
354
365
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
355
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CalendarApi.exportRedisList1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
366
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CalendarApi.calendarBatchImportTemplate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
356
367
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
357
368
  });
358
369
  },
359
370
  /**
360
371
  *
361
- * @summary 获取日历设置
362
- * @param {string} date
372
+ * @summary 导入-上传文件
373
+ * @param {number} parkId 园区id
374
+ * @param {File} file
375
+ * @param {string} [language] 语言
363
376
  * @param {*} [options] Override http request option.
364
377
  * @throws {RequiredError}
365
378
  */
366
- getByDate(date, options) {
379
+ calendarBatchImportUpload(parkId, file, language, options) {
367
380
  return __awaiter(this, void 0, void 0, function* () {
368
381
  var _a, _b, _c;
369
- const localVarAxiosArgs = yield localVarAxiosParamCreator.getByDate(date, options);
382
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.calendarBatchImportUpload(parkId, file, language, options);
370
383
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
371
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CalendarApi.getByDate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
384
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CalendarApi.calendarBatchImportUpload']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
372
385
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
373
386
  });
374
387
  },
375
388
  /**
376
389
  *
377
- * @summary 导入redis
390
+ * @summary 导出
391
+ * @param {number} year
378
392
  * @param {string} [language]
379
- * @param {SaveWaterMeterBatchRequest} [saveWaterMeterBatchRequest]
380
393
  * @param {*} [options] Override http request option.
381
394
  * @throws {RequiredError}
382
395
  */
383
- saveBatchExport1(language, saveWaterMeterBatchRequest, options) {
396
+ calendarExport(year, language, options) {
384
397
  return __awaiter(this, void 0, void 0, function* () {
385
398
  var _a, _b, _c;
386
- const localVarAxiosArgs = yield localVarAxiosParamCreator.saveBatchExport1(language, saveWaterMeterBatchRequest, options);
399
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.calendarExport(year, language, options);
387
400
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
388
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CalendarApi.saveBatchExport1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
401
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CalendarApi.calendarExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
389
402
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
390
403
  });
391
404
  },
392
405
  /**
393
406
  *
394
- * @summary 根据时间区间查询
395
- * @param {string} [start] 开始时间
396
- * @param {string} [end] 结束时间
407
+ * @summary 获取日历设置
408
+ * @param {string} date
397
409
  * @param {*} [options] Override http request option.
398
410
  * @throws {RequiredError}
399
411
  */
400
- sectionQuery(start, end, options) {
412
+ getByDate(date, options) {
401
413
  return __awaiter(this, void 0, void 0, function* () {
402
414
  var _a, _b, _c;
403
- const localVarAxiosArgs = yield localVarAxiosParamCreator.sectionQuery(start, end, options);
415
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getByDate(date, options);
404
416
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
405
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CalendarApi.sectionQuery']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
417
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CalendarApi.getByDate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
406
418
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
407
419
  });
408
420
  },
409
421
  /**
410
422
  *
411
- * @summary 修改日期
412
- * @param {CalendarSaveUpdateDto} calendarSaveUpdateDto
423
+ * @summary 根据时间区间查询
424
+ * @param {string} [start] 开始时间
425
+ * @param {string} [end] 结束时间
413
426
  * @param {*} [options] Override http request option.
414
427
  * @throws {RequiredError}
415
428
  */
416
- updateOrAdd(calendarSaveUpdateDto, options) {
429
+ sectionQuery(start, end, options) {
417
430
  return __awaiter(this, void 0, void 0, function* () {
418
431
  var _a, _b, _c;
419
- const localVarAxiosArgs = yield localVarAxiosParamCreator.updateOrAdd(calendarSaveUpdateDto, options);
432
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.sectionQuery(start, end, options);
420
433
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
421
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CalendarApi.updateOrAdd']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
434
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CalendarApi.sectionQuery']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
422
435
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
423
436
  });
424
437
  },
425
438
  /**
426
439
  *
427
- * @summary 导入模板
428
- * @param {string} [language]
440
+ * @summary 修改日期
441
+ * @param {CalendarSaveUpdateDto} calendarSaveUpdateDto
429
442
  * @param {*} [options] Override http request option.
430
443
  * @throws {RequiredError}
431
444
  */
432
- uploadAdd4(language, options) {
445
+ updateOrAdd(calendarSaveUpdateDto, options) {
433
446
  return __awaiter(this, void 0, void 0, function* () {
434
447
  var _a, _b, _c;
435
- const localVarAxiosArgs = yield localVarAxiosParamCreator.uploadAdd4(language, options);
448
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.updateOrAdd(calendarSaveUpdateDto, options);
436
449
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
437
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CalendarApi.uploadAdd4']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
450
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CalendarApi.updateOrAdd']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
438
451
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
439
452
  });
440
453
  },
@@ -449,51 +462,61 @@ export const CalendarApiFactory = function (configuration, basePath, axios) {
449
462
  return {
450
463
  /**
451
464
  *
452
- * @summary 导出
453
- * @param {CalendarApiExportList2Request} requestParameters Request parameters.
465
+ * @summary 导入-确认
454
466
  * @param {*} [options] Override http request option.
455
467
  * @throws {RequiredError}
456
468
  */
457
- exportList2(requestParameters, options) {
458
- return localVarFp.exportList2(requestParameters.year, requestParameters.language, options).then((request) => request(axios, basePath));
469
+ calendarBatchImportConfirm(options) {
470
+ return localVarFp.calendarBatchImportConfirm(options).then((request) => request(axios, basePath));
459
471
  },
460
472
  /**
461
473
  *
462
- * @summary 导入-入库
474
+ * @summary 导入-预览
463
475
  * @param {*} [options] Override http request option.
464
476
  * @throws {RequiredError}
465
477
  */
466
- exportMysql1(options) {
467
- return localVarFp.exportMysql1(options).then((request) => request(axios, basePath));
478
+ calendarBatchImportPreView(options) {
479
+ return localVarFp.calendarBatchImportPreView(options).then((request) => request(axios, basePath));
468
480
  },
469
481
  /**
470
482
  *
471
- * @summary 导入结果确认
483
+ * @summary 导入-下载模板
484
+ * @param {CalendarApiCalendarBatchImportTemplateRequest} requestParameters Request parameters.
472
485
  * @param {*} [options] Override http request option.
473
486
  * @throws {RequiredError}
474
487
  */
475
- exportRedisList1(options) {
476
- return localVarFp.exportRedisList1(options).then((request) => request(axios, basePath));
488
+ calendarBatchImportTemplate(requestParameters = {}, options) {
489
+ return localVarFp.calendarBatchImportTemplate(requestParameters.language, options).then((request) => request(axios, basePath));
477
490
  },
478
491
  /**
479
492
  *
480
- * @summary 获取日历设置
481
- * @param {CalendarApiGetByDateRequest} requestParameters Request parameters.
493
+ * @summary 导入-上传文件
494
+ * @param {CalendarApiCalendarBatchImportUploadRequest} requestParameters Request parameters.
482
495
  * @param {*} [options] Override http request option.
483
496
  * @throws {RequiredError}
484
497
  */
485
- getByDate(requestParameters, options) {
486
- return localVarFp.getByDate(requestParameters.date, options).then((request) => request(axios, basePath));
498
+ calendarBatchImportUpload(requestParameters, options) {
499
+ return localVarFp.calendarBatchImportUpload(requestParameters.parkId, requestParameters.file, requestParameters.language, options).then((request) => request(axios, basePath));
487
500
  },
488
501
  /**
489
502
  *
490
- * @summary 导入redis
491
- * @param {CalendarApiSaveBatchExport1Request} requestParameters Request parameters.
503
+ * @summary 导出
504
+ * @param {CalendarApiCalendarExportRequest} requestParameters Request parameters.
492
505
  * @param {*} [options] Override http request option.
493
506
  * @throws {RequiredError}
494
507
  */
495
- saveBatchExport1(requestParameters = {}, options) {
496
- return localVarFp.saveBatchExport1(requestParameters.language, requestParameters.saveWaterMeterBatchRequest, options).then((request) => request(axios, basePath));
508
+ calendarExport(requestParameters, options) {
509
+ return localVarFp.calendarExport(requestParameters.year, requestParameters.language, options).then((request) => request(axios, basePath));
510
+ },
511
+ /**
512
+ *
513
+ * @summary 获取日历设置
514
+ * @param {CalendarApiGetByDateRequest} requestParameters Request parameters.
515
+ * @param {*} [options] Override http request option.
516
+ * @throws {RequiredError}
517
+ */
518
+ getByDate(requestParameters, options) {
519
+ return localVarFp.getByDate(requestParameters.date, options).then((request) => request(axios, basePath));
497
520
  },
498
521
  /**
499
522
  *
@@ -515,16 +538,6 @@ export const CalendarApiFactory = function (configuration, basePath, axios) {
515
538
  updateOrAdd(requestParameters, options) {
516
539
  return localVarFp.updateOrAdd(requestParameters.calendarSaveUpdateDto, options).then((request) => request(axios, basePath));
517
540
  },
518
- /**
519
- *
520
- * @summary 导入模板
521
- * @param {CalendarApiUploadAdd4Request} requestParameters Request parameters.
522
- * @param {*} [options] Override http request option.
523
- * @throws {RequiredError}
524
- */
525
- uploadAdd4(requestParameters = {}, options) {
526
- return localVarFp.uploadAdd4(requestParameters.language, options).then((request) => request(axios, basePath));
527
- },
528
541
  };
529
542
  };
530
543
  /**
@@ -536,56 +549,67 @@ export const CalendarApiFactory = function (configuration, basePath, axios) {
536
549
  export class CalendarApi extends BaseAPI {
537
550
  /**
538
551
  *
539
- * @summary 导出
540
- * @param {CalendarApiExportList2Request} requestParameters Request parameters.
552
+ * @summary 导入-确认
541
553
  * @param {*} [options] Override http request option.
542
554
  * @throws {RequiredError}
543
555
  * @memberof CalendarApi
544
556
  */
545
- exportList2(requestParameters, options) {
546
- return CalendarApiFp(this.configuration).exportList2(requestParameters.year, requestParameters.language, options).then((request) => request(this.axios, this.basePath));
557
+ calendarBatchImportConfirm(options) {
558
+ return CalendarApiFp(this.configuration).calendarBatchImportConfirm(options).then((request) => request(this.axios, this.basePath));
547
559
  }
548
560
  /**
549
561
  *
550
- * @summary 导入-入库
562
+ * @summary 导入-预览
551
563
  * @param {*} [options] Override http request option.
552
564
  * @throws {RequiredError}
553
565
  * @memberof CalendarApi
554
566
  */
555
- exportMysql1(options) {
556
- return CalendarApiFp(this.configuration).exportMysql1(options).then((request) => request(this.axios, this.basePath));
567
+ calendarBatchImportPreView(options) {
568
+ return CalendarApiFp(this.configuration).calendarBatchImportPreView(options).then((request) => request(this.axios, this.basePath));
557
569
  }
558
570
  /**
559
571
  *
560
- * @summary 导入结果确认
572
+ * @summary 导入-下载模板
573
+ * @param {CalendarApiCalendarBatchImportTemplateRequest} requestParameters Request parameters.
561
574
  * @param {*} [options] Override http request option.
562
575
  * @throws {RequiredError}
563
576
  * @memberof CalendarApi
564
577
  */
565
- exportRedisList1(options) {
566
- return CalendarApiFp(this.configuration).exportRedisList1(options).then((request) => request(this.axios, this.basePath));
578
+ calendarBatchImportTemplate(requestParameters = {}, options) {
579
+ return CalendarApiFp(this.configuration).calendarBatchImportTemplate(requestParameters.language, options).then((request) => request(this.axios, this.basePath));
567
580
  }
568
581
  /**
569
582
  *
570
- * @summary 获取日历设置
571
- * @param {CalendarApiGetByDateRequest} requestParameters Request parameters.
583
+ * @summary 导入-上传文件
584
+ * @param {CalendarApiCalendarBatchImportUploadRequest} requestParameters Request parameters.
572
585
  * @param {*} [options] Override http request option.
573
586
  * @throws {RequiredError}
574
587
  * @memberof CalendarApi
575
588
  */
576
- getByDate(requestParameters, options) {
577
- return CalendarApiFp(this.configuration).getByDate(requestParameters.date, options).then((request) => request(this.axios, this.basePath));
589
+ calendarBatchImportUpload(requestParameters, options) {
590
+ return CalendarApiFp(this.configuration).calendarBatchImportUpload(requestParameters.parkId, requestParameters.file, requestParameters.language, options).then((request) => request(this.axios, this.basePath));
578
591
  }
579
592
  /**
580
593
  *
581
- * @summary 导入redis
582
- * @param {CalendarApiSaveBatchExport1Request} requestParameters Request parameters.
594
+ * @summary 导出
595
+ * @param {CalendarApiCalendarExportRequest} requestParameters Request parameters.
583
596
  * @param {*} [options] Override http request option.
584
597
  * @throws {RequiredError}
585
598
  * @memberof CalendarApi
586
599
  */
587
- saveBatchExport1(requestParameters = {}, options) {
588
- return CalendarApiFp(this.configuration).saveBatchExport1(requestParameters.language, requestParameters.saveWaterMeterBatchRequest, options).then((request) => request(this.axios, this.basePath));
600
+ calendarExport(requestParameters, options) {
601
+ return CalendarApiFp(this.configuration).calendarExport(requestParameters.year, requestParameters.language, options).then((request) => request(this.axios, this.basePath));
602
+ }
603
+ /**
604
+ *
605
+ * @summary 获取日历设置
606
+ * @param {CalendarApiGetByDateRequest} requestParameters Request parameters.
607
+ * @param {*} [options] Override http request option.
608
+ * @throws {RequiredError}
609
+ * @memberof CalendarApi
610
+ */
611
+ getByDate(requestParameters, options) {
612
+ return CalendarApiFp(this.configuration).getByDate(requestParameters.date, options).then((request) => request(this.axios, this.basePath));
589
613
  }
590
614
  /**
591
615
  *
@@ -609,15 +633,4 @@ export class CalendarApi extends BaseAPI {
609
633
  updateOrAdd(requestParameters, options) {
610
634
  return CalendarApiFp(this.configuration).updateOrAdd(requestParameters.calendarSaveUpdateDto, options).then((request) => request(this.axios, this.basePath));
611
635
  }
612
- /**
613
- *
614
- * @summary 导入模板
615
- * @param {CalendarApiUploadAdd4Request} requestParameters Request parameters.
616
- * @param {*} [options] Override http request option.
617
- * @throws {RequiredError}
618
- * @memberof CalendarApi
619
- */
620
- uploadAdd4(requestParameters = {}, options) {
621
- return CalendarApiFp(this.configuration).uploadAdd4(requestParameters.language, options).then((request) => request(this.axios, this.basePath));
622
- }
623
636
  }