@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
@@ -375,23 +375,12 @@ export const SettingApiAxiosParamCreator = function (configuration) {
375
375
  }),
376
376
  /**
377
377
  *
378
- * @summary 添加园区设置
379
- * @param {number} deptId
380
- * @param {string} configKey
381
- * @param {object} body
378
+ * @summary 导入-确认
382
379
  * @param {*} [options] Override http request option.
383
380
  * @throws {RequiredError}
384
381
  */
385
- deptConfigAddOrUpdate: (deptId_1, configKey_1, body_1, ...args_1) => __awaiter(this, [deptId_1, configKey_1, body_1, ...args_1], void 0, function* (deptId, configKey, body, options = {}) {
386
- // verify required parameter 'deptId' is not null or undefined
387
- assertParamExists('deptConfigAddOrUpdate', 'deptId', deptId);
388
- // verify required parameter 'configKey' is not null or undefined
389
- assertParamExists('deptConfigAddOrUpdate', 'configKey', configKey);
390
- // verify required parameter 'body' is not null or undefined
391
- assertParamExists('deptConfigAddOrUpdate', 'body', body);
392
- const localVarPath = `/deptConfig/{deptId}/{configKey}`
393
- .replace(`{${"deptId"}}`, encodeURIComponent(String(deptId)))
394
- .replace(`{${"configKey"}}`, encodeURIComponent(String(configKey)));
382
+ calendarBatchImportConfirm: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
383
+ const localVarPath = `/calendar/batchImport/confirm`;
395
384
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
396
385
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
397
386
  let baseOptions;
@@ -404,11 +393,9 @@ export const SettingApiAxiosParamCreator = function (configuration) {
404
393
  // authentication tokenScheme required
405
394
  // http bearer authentication required
406
395
  yield setBearerAuthToObject(localVarHeaderParameter, configuration);
407
- localVarHeaderParameter['Content-Type'] = 'application/json';
408
396
  setSearchParams(localVarUrlObj, localVarQueryParameter);
409
397
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
410
398
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
411
- localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration);
412
399
  return {
413
400
  url: toPathString(localVarUrlObj),
414
401
  options: localVarRequestOptions,
@@ -416,20 +403,41 @@ export const SettingApiAxiosParamCreator = function (configuration) {
416
403
  }),
417
404
  /**
418
405
  *
419
- * @summary 查询园区设置
420
- * @param {number} deptId
421
- * @param {string} configKey
406
+ * @summary 导入-预览
422
407
  * @param {*} [options] Override http request option.
423
408
  * @throws {RequiredError}
424
409
  */
425
- deptConfigSelectByParkAndKey: (deptId_1, configKey_1, ...args_1) => __awaiter(this, [deptId_1, configKey_1, ...args_1], void 0, function* (deptId, configKey, options = {}) {
426
- // verify required parameter 'deptId' is not null or undefined
427
- assertParamExists('deptConfigSelectByParkAndKey', 'deptId', deptId);
428
- // verify required parameter 'configKey' is not null or undefined
429
- assertParamExists('deptConfigSelectByParkAndKey', 'configKey', configKey);
430
- const localVarPath = `/deptConfig/{deptId}/{configKey}`
431
- .replace(`{${"deptId"}}`, encodeURIComponent(String(deptId)))
432
- .replace(`{${"configKey"}}`, encodeURIComponent(String(configKey)));
410
+ calendarBatchImportPreView: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
411
+ const localVarPath = `/calendar/batchImport/preView`;
412
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
413
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
414
+ let baseOptions;
415
+ if (configuration) {
416
+ baseOptions = configuration.baseOptions;
417
+ }
418
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
419
+ const localVarHeaderParameter = {};
420
+ const localVarQueryParameter = {};
421
+ // authentication tokenScheme required
422
+ // http bearer authentication required
423
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
424
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
425
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
426
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
427
+ return {
428
+ url: toPathString(localVarUrlObj),
429
+ options: localVarRequestOptions,
430
+ };
431
+ }),
432
+ /**
433
+ *
434
+ * @summary 导入-下载模板
435
+ * @param {string} [language]
436
+ * @param {*} [options] Override http request option.
437
+ * @throws {RequiredError}
438
+ */
439
+ calendarBatchImportTemplate: (language_1, ...args_1) => __awaiter(this, [language_1, ...args_1], void 0, function* (language, options = {}) {
440
+ const localVarPath = `/calendar/batchImport/template`;
433
441
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
434
442
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
435
443
  let baseOptions;
@@ -442,6 +450,9 @@ export const SettingApiAxiosParamCreator = function (configuration) {
442
450
  // authentication tokenScheme required
443
451
  // http bearer authentication required
444
452
  yield setBearerAuthToObject(localVarHeaderParameter, configuration);
453
+ if (language !== undefined) {
454
+ localVarQueryParameter['language'] = language;
455
+ }
445
456
  setSearchParams(localVarUrlObj, localVarQueryParameter);
446
457
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
447
458
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -450,6 +461,53 @@ export const SettingApiAxiosParamCreator = function (configuration) {
450
461
  options: localVarRequestOptions,
451
462
  };
452
463
  }),
464
+ /**
465
+ *
466
+ * @summary 导入-上传文件
467
+ * @param {number} parkId 园区id
468
+ * @param {File} file
469
+ * @param {string} [language] 语言
470
+ * @param {*} [options] Override http request option.
471
+ * @throws {RequiredError}
472
+ */
473
+ 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 = {}) {
474
+ // verify required parameter 'parkId' is not null or undefined
475
+ assertParamExists('calendarBatchImportUpload', 'parkId', parkId);
476
+ // verify required parameter 'file' is not null or undefined
477
+ assertParamExists('calendarBatchImportUpload', 'file', file);
478
+ const localVarPath = `/calendar/batchImport/upload`;
479
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
480
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
481
+ let baseOptions;
482
+ if (configuration) {
483
+ baseOptions = configuration.baseOptions;
484
+ }
485
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
486
+ const localVarHeaderParameter = {};
487
+ const localVarQueryParameter = {};
488
+ const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
489
+ // authentication tokenScheme required
490
+ // http bearer authentication required
491
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
492
+ if (parkId !== undefined) {
493
+ localVarFormParams.append('parkId', parkId);
494
+ }
495
+ if (language !== undefined) {
496
+ localVarFormParams.append('language', language);
497
+ }
498
+ if (file !== undefined) {
499
+ localVarFormParams.append('file', file);
500
+ }
501
+ localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
502
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
503
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
504
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
505
+ localVarRequestOptions.data = localVarFormParams;
506
+ return {
507
+ url: toPathString(localVarUrlObj),
508
+ options: localVarRequestOptions,
509
+ };
510
+ }),
453
511
  /**
454
512
  *
455
513
  * @summary 导出
@@ -458,10 +516,10 @@ export const SettingApiAxiosParamCreator = function (configuration) {
458
516
  * @param {*} [options] Override http request option.
459
517
  * @throws {RequiredError}
460
518
  */
461
- exportList2: (year_1, language_1, ...args_1) => __awaiter(this, [year_1, language_1, ...args_1], void 0, function* (year, language, options = {}) {
519
+ calendarExport: (year_1, language_1, ...args_1) => __awaiter(this, [year_1, language_1, ...args_1], void 0, function* (year, language, options = {}) {
462
520
  // verify required parameter 'year' is not null or undefined
463
- assertParamExists('exportList2', 'year', year);
464
- const localVarPath = `/calendar/exportList/{year}`
521
+ assertParamExists('calendarExport', 'year', year);
522
+ const localVarPath = `/calendar/export/{year}`
465
523
  .replace(`{${"year"}}`, encodeURIComponent(String(year)));
466
524
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
467
525
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -488,27 +546,40 @@ export const SettingApiAxiosParamCreator = function (configuration) {
488
546
  }),
489
547
  /**
490
548
  *
491
- * @summary 导入-入库
549
+ * @summary 添加园区设置
550
+ * @param {number} deptId
551
+ * @param {string} configKey
552
+ * @param {object} body
492
553
  * @param {*} [options] Override http request option.
493
554
  * @throws {RequiredError}
494
555
  */
495
- exportMysql1: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
496
- const localVarPath = `/calendar/exportMysql`;
556
+ deptConfigAddOrUpdate: (deptId_1, configKey_1, body_1, ...args_1) => __awaiter(this, [deptId_1, configKey_1, body_1, ...args_1], void 0, function* (deptId, configKey, body, options = {}) {
557
+ // verify required parameter 'deptId' is not null or undefined
558
+ assertParamExists('deptConfigAddOrUpdate', 'deptId', deptId);
559
+ // verify required parameter 'configKey' is not null or undefined
560
+ assertParamExists('deptConfigAddOrUpdate', 'configKey', configKey);
561
+ // verify required parameter 'body' is not null or undefined
562
+ assertParamExists('deptConfigAddOrUpdate', 'body', body);
563
+ const localVarPath = `/deptConfig/{deptId}/{configKey}`
564
+ .replace(`{${"deptId"}}`, encodeURIComponent(String(deptId)))
565
+ .replace(`{${"configKey"}}`, encodeURIComponent(String(configKey)));
497
566
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
498
567
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
499
568
  let baseOptions;
500
569
  if (configuration) {
501
570
  baseOptions = configuration.baseOptions;
502
571
  }
503
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
572
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
504
573
  const localVarHeaderParameter = {};
505
574
  const localVarQueryParameter = {};
506
575
  // authentication tokenScheme required
507
576
  // http bearer authentication required
508
577
  yield setBearerAuthToObject(localVarHeaderParameter, configuration);
578
+ localVarHeaderParameter['Content-Type'] = 'application/json';
509
579
  setSearchParams(localVarUrlObj, localVarQueryParameter);
510
580
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
511
581
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
582
+ localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration);
512
583
  return {
513
584
  url: toPathString(localVarUrlObj),
514
585
  options: localVarRequestOptions,
@@ -516,12 +587,20 @@ export const SettingApiAxiosParamCreator = function (configuration) {
516
587
  }),
517
588
  /**
518
589
  *
519
- * @summary 导入结果确认
590
+ * @summary 查询园区设置
591
+ * @param {number} deptId
592
+ * @param {string} configKey
520
593
  * @param {*} [options] Override http request option.
521
594
  * @throws {RequiredError}
522
595
  */
523
- exportRedisList1: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
524
- const localVarPath = `/calendar/exportRedisList`;
596
+ deptConfigSelectByParkAndKey: (deptId_1, configKey_1, ...args_1) => __awaiter(this, [deptId_1, configKey_1, ...args_1], void 0, function* (deptId, configKey, options = {}) {
597
+ // verify required parameter 'deptId' is not null or undefined
598
+ assertParamExists('deptConfigSelectByParkAndKey', 'deptId', deptId);
599
+ // verify required parameter 'configKey' is not null or undefined
600
+ assertParamExists('deptConfigSelectByParkAndKey', 'configKey', configKey);
601
+ const localVarPath = `/deptConfig/{deptId}/{configKey}`
602
+ .replace(`{${"deptId"}}`, encodeURIComponent(String(deptId)))
603
+ .replace(`{${"configKey"}}`, encodeURIComponent(String(configKey)));
525
604
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
526
605
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
527
606
  let baseOptions;
@@ -644,41 +723,6 @@ export const SettingApiAxiosParamCreator = function (configuration) {
644
723
  options: localVarRequestOptions,
645
724
  };
646
725
  }),
647
- /**
648
- *
649
- * @summary 导入redis
650
- * @param {string} [language]
651
- * @param {SaveWaterMeterBatchRequest} [saveWaterMeterBatchRequest]
652
- * @param {*} [options] Override http request option.
653
- * @throws {RequiredError}
654
- */
655
- saveBatchExport1: (language_1, saveWaterMeterBatchRequest_1, ...args_1) => __awaiter(this, [language_1, saveWaterMeterBatchRequest_1, ...args_1], void 0, function* (language, saveWaterMeterBatchRequest, options = {}) {
656
- const localVarPath = `/calendar/saveBatchExport`;
657
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
658
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
659
- let baseOptions;
660
- if (configuration) {
661
- baseOptions = configuration.baseOptions;
662
- }
663
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
664
- const localVarHeaderParameter = {};
665
- const localVarQueryParameter = {};
666
- // authentication tokenScheme required
667
- // http bearer authentication required
668
- yield setBearerAuthToObject(localVarHeaderParameter, configuration);
669
- if (language !== undefined) {
670
- localVarQueryParameter['language'] = language;
671
- }
672
- localVarHeaderParameter['Content-Type'] = 'application/json';
673
- setSearchParams(localVarUrlObj, localVarQueryParameter);
674
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
675
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
676
- localVarRequestOptions.data = serializeDataIfNeeded(saveWaterMeterBatchRequest, localVarRequestOptions, configuration);
677
- return {
678
- url: toPathString(localVarUrlObj),
679
- options: localVarRequestOptions,
680
- };
681
- }),
682
726
  /**
683
727
  *
684
728
  * @summary 根据时间区间查询
@@ -855,13 +899,61 @@ export const SettingApiAxiosParamCreator = function (configuration) {
855
899
  }),
856
900
  /**
857
901
  *
858
- * @summary 导入模板
859
- * @param {string} [language]
902
+ * @summary 新增或修改
903
+ * @param {number} parkId
904
+ * @param {WorkOrderTypeEnum} workOrderType
905
+ * @param {Array<WorkOrderDeptSettingsAddOrUpdateVO>} workOrderDeptSettingsAddOrUpdateVO
906
+ * @param {*} [options] Override http request option.
907
+ * @throws {RequiredError}
908
+ */
909
+ workOrderDeptSettingsAddOrUpdate: (parkId_1, workOrderType_1, workOrderDeptSettingsAddOrUpdateVO_1, ...args_1) => __awaiter(this, [parkId_1, workOrderType_1, workOrderDeptSettingsAddOrUpdateVO_1, ...args_1], void 0, function* (parkId, workOrderType, workOrderDeptSettingsAddOrUpdateVO, options = {}) {
910
+ // verify required parameter 'parkId' is not null or undefined
911
+ assertParamExists('workOrderDeptSettingsAddOrUpdate', 'parkId', parkId);
912
+ // verify required parameter 'workOrderType' is not null or undefined
913
+ assertParamExists('workOrderDeptSettingsAddOrUpdate', 'workOrderType', workOrderType);
914
+ // verify required parameter 'workOrderDeptSettingsAddOrUpdateVO' is not null or undefined
915
+ assertParamExists('workOrderDeptSettingsAddOrUpdate', 'workOrderDeptSettingsAddOrUpdateVO', workOrderDeptSettingsAddOrUpdateVO);
916
+ const localVarPath = `/gizone/workOrderDeptSettings/{parkId}/{workOrderType}`
917
+ .replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)))
918
+ .replace(`{${"workOrderType"}}`, encodeURIComponent(String(workOrderType)));
919
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
920
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
921
+ let baseOptions;
922
+ if (configuration) {
923
+ baseOptions = configuration.baseOptions;
924
+ }
925
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
926
+ const localVarHeaderParameter = {};
927
+ const localVarQueryParameter = {};
928
+ // authentication tokenScheme required
929
+ // http bearer authentication required
930
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
931
+ localVarHeaderParameter['Content-Type'] = 'application/json';
932
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
933
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
934
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
935
+ localVarRequestOptions.data = serializeDataIfNeeded(workOrderDeptSettingsAddOrUpdateVO, localVarRequestOptions, configuration);
936
+ return {
937
+ url: toPathString(localVarUrlObj),
938
+ options: localVarRequestOptions,
939
+ };
940
+ }),
941
+ /**
942
+ *
943
+ * @summary 根据工单类型查询
944
+ * @param {number} parkId
945
+ * @param {WorkOrderTypeEnum} workOrderType
860
946
  * @param {*} [options] Override http request option.
861
947
  * @throws {RequiredError}
862
948
  */
863
- uploadAdd4: (language_1, ...args_1) => __awaiter(this, [language_1, ...args_1], void 0, function* (language, options = {}) {
864
- const localVarPath = `/calendar/uploadAdd`;
949
+ workOrderDeptSettingsSelectByWorkOrderType: (parkId_1, workOrderType_1, ...args_1) => __awaiter(this, [parkId_1, workOrderType_1, ...args_1], void 0, function* (parkId, workOrderType, options = {}) {
950
+ // verify required parameter 'parkId' is not null or undefined
951
+ assertParamExists('workOrderDeptSettingsSelectByWorkOrderType', 'parkId', parkId);
952
+ // verify required parameter 'workOrderType' is not null or undefined
953
+ assertParamExists('workOrderDeptSettingsSelectByWorkOrderType', 'workOrderType', workOrderType);
954
+ const localVarPath = `/gizone/workOrderDeptSettings/{parkId}/{workOrderType}`
955
+ .replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)))
956
+ .replace(`{${"workOrderType"}}`, encodeURIComponent(String(workOrderType)));
865
957
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
866
958
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
867
959
  let baseOptions;
@@ -874,9 +966,46 @@ export const SettingApiAxiosParamCreator = function (configuration) {
874
966
  // authentication tokenScheme required
875
967
  // http bearer authentication required
876
968
  yield setBearerAuthToObject(localVarHeaderParameter, configuration);
877
- if (language !== undefined) {
878
- localVarQueryParameter['language'] = language;
969
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
970
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
971
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
972
+ return {
973
+ url: toPathString(localVarUrlObj),
974
+ options: localVarRequestOptions,
975
+ };
976
+ }),
977
+ /**
978
+ *
979
+ * @summary 根据工单类型和key查询
980
+ * @param {number} parkId
981
+ * @param {WorkOrderTypeEnum} workOrderType
982
+ * @param {string} key
983
+ * @param {*} [options] Override http request option.
984
+ * @throws {RequiredError}
985
+ */
986
+ workOrderDeptSettingsSelectByWorkOrderTypeAndKey: (parkId_1, workOrderType_1, key_1, ...args_1) => __awaiter(this, [parkId_1, workOrderType_1, key_1, ...args_1], void 0, function* (parkId, workOrderType, key, options = {}) {
987
+ // verify required parameter 'parkId' is not null or undefined
988
+ assertParamExists('workOrderDeptSettingsSelectByWorkOrderTypeAndKey', 'parkId', parkId);
989
+ // verify required parameter 'workOrderType' is not null or undefined
990
+ assertParamExists('workOrderDeptSettingsSelectByWorkOrderTypeAndKey', 'workOrderType', workOrderType);
991
+ // verify required parameter 'key' is not null or undefined
992
+ assertParamExists('workOrderDeptSettingsSelectByWorkOrderTypeAndKey', 'key', key);
993
+ const localVarPath = `/gizone/workOrderDeptSettings/{parkId}/{workOrderType}/{key}`
994
+ .replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)))
995
+ .replace(`{${"workOrderType"}}`, encodeURIComponent(String(workOrderType)))
996
+ .replace(`{${"key"}}`, encodeURIComponent(String(key)));
997
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
998
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
999
+ let baseOptions;
1000
+ if (configuration) {
1001
+ baseOptions = configuration.baseOptions;
879
1002
  }
1003
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
1004
+ const localVarHeaderParameter = {};
1005
+ const localVarQueryParameter = {};
1006
+ // authentication tokenScheme required
1007
+ // http bearer authentication required
1008
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
880
1009
  setSearchParams(localVarUrlObj, localVarQueryParameter);
881
1010
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
882
1011
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -1125,36 +1254,65 @@ export const SettingApiFp = function (configuration) {
1125
1254
  },
1126
1255
  /**
1127
1256
  *
1128
- * @summary 添加园区设置
1129
- * @param {number} deptId
1130
- * @param {string} configKey
1131
- * @param {object} body
1257
+ * @summary 导入-确认
1132
1258
  * @param {*} [options] Override http request option.
1133
1259
  * @throws {RequiredError}
1134
1260
  */
1135
- deptConfigAddOrUpdate(deptId, configKey, body, options) {
1261
+ calendarBatchImportConfirm(options) {
1136
1262
  return __awaiter(this, void 0, void 0, function* () {
1137
1263
  var _a, _b, _c;
1138
- const localVarAxiosArgs = yield localVarAxiosParamCreator.deptConfigAddOrUpdate(deptId, configKey, body, options);
1264
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.calendarBatchImportConfirm(options);
1139
1265
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1140
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.deptConfigAddOrUpdate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1266
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.calendarBatchImportConfirm']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1141
1267
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1142
1268
  });
1143
1269
  },
1144
1270
  /**
1145
1271
  *
1146
- * @summary 查询园区设置
1147
- * @param {number} deptId
1148
- * @param {string} configKey
1272
+ * @summary 导入-预览
1149
1273
  * @param {*} [options] Override http request option.
1150
1274
  * @throws {RequiredError}
1151
1275
  */
1152
- deptConfigSelectByParkAndKey(deptId, configKey, options) {
1276
+ calendarBatchImportPreView(options) {
1153
1277
  return __awaiter(this, void 0, void 0, function* () {
1154
1278
  var _a, _b, _c;
1155
- const localVarAxiosArgs = yield localVarAxiosParamCreator.deptConfigSelectByParkAndKey(deptId, configKey, options);
1279
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.calendarBatchImportPreView(options);
1156
1280
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1157
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.deptConfigSelectByParkAndKey']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1281
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.calendarBatchImportPreView']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1282
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1283
+ });
1284
+ },
1285
+ /**
1286
+ *
1287
+ * @summary 导入-下载模板
1288
+ * @param {string} [language]
1289
+ * @param {*} [options] Override http request option.
1290
+ * @throws {RequiredError}
1291
+ */
1292
+ calendarBatchImportTemplate(language, options) {
1293
+ return __awaiter(this, void 0, void 0, function* () {
1294
+ var _a, _b, _c;
1295
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.calendarBatchImportTemplate(language, options);
1296
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1297
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.calendarBatchImportTemplate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1298
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1299
+ });
1300
+ },
1301
+ /**
1302
+ *
1303
+ * @summary 导入-上传文件
1304
+ * @param {number} parkId 园区id
1305
+ * @param {File} file
1306
+ * @param {string} [language] 语言
1307
+ * @param {*} [options] Override http request option.
1308
+ * @throws {RequiredError}
1309
+ */
1310
+ calendarBatchImportUpload(parkId, file, language, options) {
1311
+ return __awaiter(this, void 0, void 0, function* () {
1312
+ var _a, _b, _c;
1313
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.calendarBatchImportUpload(parkId, file, language, options);
1314
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1315
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.calendarBatchImportUpload']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1158
1316
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1159
1317
  });
1160
1318
  },
@@ -1166,42 +1324,47 @@ export const SettingApiFp = function (configuration) {
1166
1324
  * @param {*} [options] Override http request option.
1167
1325
  * @throws {RequiredError}
1168
1326
  */
1169
- exportList2(year, language, options) {
1327
+ calendarExport(year, language, options) {
1170
1328
  return __awaiter(this, void 0, void 0, function* () {
1171
1329
  var _a, _b, _c;
1172
- const localVarAxiosArgs = yield localVarAxiosParamCreator.exportList2(year, language, options);
1330
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.calendarExport(year, language, options);
1173
1331
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1174
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.exportList2']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1332
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.calendarExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1175
1333
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1176
1334
  });
1177
1335
  },
1178
1336
  /**
1179
1337
  *
1180
- * @summary 导入-入库
1338
+ * @summary 添加园区设置
1339
+ * @param {number} deptId
1340
+ * @param {string} configKey
1341
+ * @param {object} body
1181
1342
  * @param {*} [options] Override http request option.
1182
1343
  * @throws {RequiredError}
1183
1344
  */
1184
- exportMysql1(options) {
1345
+ deptConfigAddOrUpdate(deptId, configKey, body, options) {
1185
1346
  return __awaiter(this, void 0, void 0, function* () {
1186
1347
  var _a, _b, _c;
1187
- const localVarAxiosArgs = yield localVarAxiosParamCreator.exportMysql1(options);
1348
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.deptConfigAddOrUpdate(deptId, configKey, body, options);
1188
1349
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1189
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.exportMysql1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1350
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.deptConfigAddOrUpdate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1190
1351
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1191
1352
  });
1192
1353
  },
1193
1354
  /**
1194
1355
  *
1195
- * @summary 导入结果确认
1356
+ * @summary 查询园区设置
1357
+ * @param {number} deptId
1358
+ * @param {string} configKey
1196
1359
  * @param {*} [options] Override http request option.
1197
1360
  * @throws {RequiredError}
1198
1361
  */
1199
- exportRedisList1(options) {
1362
+ deptConfigSelectByParkAndKey(deptId, configKey, options) {
1200
1363
  return __awaiter(this, void 0, void 0, function* () {
1201
1364
  var _a, _b, _c;
1202
- const localVarAxiosArgs = yield localVarAxiosParamCreator.exportRedisList1(options);
1365
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.deptConfigSelectByParkAndKey(deptId, configKey, options);
1203
1366
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1204
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.exportRedisList1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1367
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.deptConfigSelectByParkAndKey']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1205
1368
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1206
1369
  });
1207
1370
  },
@@ -1253,23 +1416,6 @@ export const SettingApiFp = function (configuration) {
1253
1416
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1254
1417
  });
1255
1418
  },
1256
- /**
1257
- *
1258
- * @summary 导入redis
1259
- * @param {string} [language]
1260
- * @param {SaveWaterMeterBatchRequest} [saveWaterMeterBatchRequest]
1261
- * @param {*} [options] Override http request option.
1262
- * @throws {RequiredError}
1263
- */
1264
- saveBatchExport1(language, saveWaterMeterBatchRequest, options) {
1265
- return __awaiter(this, void 0, void 0, function* () {
1266
- var _a, _b, _c;
1267
- const localVarAxiosArgs = yield localVarAxiosParamCreator.saveBatchExport1(language, saveWaterMeterBatchRequest, options);
1268
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1269
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.saveBatchExport1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1270
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1271
- });
1272
- },
1273
1419
  /**
1274
1420
  *
1275
1421
  * @summary 根据时间区间查询
@@ -1354,17 +1500,54 @@ export const SettingApiFp = function (configuration) {
1354
1500
  },
1355
1501
  /**
1356
1502
  *
1357
- * @summary 导入模板
1358
- * @param {string} [language]
1503
+ * @summary 新增或修改
1504
+ * @param {number} parkId
1505
+ * @param {WorkOrderTypeEnum} workOrderType
1506
+ * @param {Array<WorkOrderDeptSettingsAddOrUpdateVO>} workOrderDeptSettingsAddOrUpdateVO
1507
+ * @param {*} [options] Override http request option.
1508
+ * @throws {RequiredError}
1509
+ */
1510
+ workOrderDeptSettingsAddOrUpdate(parkId, workOrderType, workOrderDeptSettingsAddOrUpdateVO, options) {
1511
+ return __awaiter(this, void 0, void 0, function* () {
1512
+ var _a, _b, _c;
1513
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.workOrderDeptSettingsAddOrUpdate(parkId, workOrderType, workOrderDeptSettingsAddOrUpdateVO, options);
1514
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1515
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.workOrderDeptSettingsAddOrUpdate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1516
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1517
+ });
1518
+ },
1519
+ /**
1520
+ *
1521
+ * @summary 根据工单类型查询
1522
+ * @param {number} parkId
1523
+ * @param {WorkOrderTypeEnum} workOrderType
1524
+ * @param {*} [options] Override http request option.
1525
+ * @throws {RequiredError}
1526
+ */
1527
+ workOrderDeptSettingsSelectByWorkOrderType(parkId, workOrderType, options) {
1528
+ return __awaiter(this, void 0, void 0, function* () {
1529
+ var _a, _b, _c;
1530
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.workOrderDeptSettingsSelectByWorkOrderType(parkId, workOrderType, options);
1531
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1532
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.workOrderDeptSettingsSelectByWorkOrderType']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1533
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1534
+ });
1535
+ },
1536
+ /**
1537
+ *
1538
+ * @summary 根据工单类型和key查询
1539
+ * @param {number} parkId
1540
+ * @param {WorkOrderTypeEnum} workOrderType
1541
+ * @param {string} key
1359
1542
  * @param {*} [options] Override http request option.
1360
1543
  * @throws {RequiredError}
1361
1544
  */
1362
- uploadAdd4(language, options) {
1545
+ workOrderDeptSettingsSelectByWorkOrderTypeAndKey(parkId, workOrderType, key, options) {
1363
1546
  return __awaiter(this, void 0, void 0, function* () {
1364
1547
  var _a, _b, _c;
1365
- const localVarAxiosArgs = yield localVarAxiosParamCreator.uploadAdd4(language, options);
1548
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.workOrderDeptSettingsSelectByWorkOrderTypeAndKey(parkId, workOrderType, key, options);
1366
1549
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1367
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.uploadAdd4']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1550
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.workOrderDeptSettingsSelectByWorkOrderTypeAndKey']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1368
1551
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1369
1552
  });
1370
1553
  },
@@ -1511,51 +1694,71 @@ export const SettingApiFactory = function (configuration, basePath, axios) {
1511
1694
  },
1512
1695
  /**
1513
1696
  *
1514
- * @summary 添加园区设置
1515
- * @param {SettingApiDeptConfigAddOrUpdateRequest} requestParameters Request parameters.
1697
+ * @summary 导入-确认
1516
1698
  * @param {*} [options] Override http request option.
1517
1699
  * @throws {RequiredError}
1518
1700
  */
1519
- deptConfigAddOrUpdate(requestParameters, options) {
1520
- return localVarFp.deptConfigAddOrUpdate(requestParameters.deptId, requestParameters.configKey, requestParameters.body, options).then((request) => request(axios, basePath));
1701
+ calendarBatchImportConfirm(options) {
1702
+ return localVarFp.calendarBatchImportConfirm(options).then((request) => request(axios, basePath));
1521
1703
  },
1522
1704
  /**
1523
1705
  *
1524
- * @summary 查询园区设置
1525
- * @param {SettingApiDeptConfigSelectByParkAndKeyRequest} requestParameters Request parameters.
1706
+ * @summary 导入-预览
1526
1707
  * @param {*} [options] Override http request option.
1527
1708
  * @throws {RequiredError}
1528
1709
  */
1529
- deptConfigSelectByParkAndKey(requestParameters, options) {
1530
- return localVarFp.deptConfigSelectByParkAndKey(requestParameters.deptId, requestParameters.configKey, options).then((request) => request(axios, basePath));
1710
+ calendarBatchImportPreView(options) {
1711
+ return localVarFp.calendarBatchImportPreView(options).then((request) => request(axios, basePath));
1712
+ },
1713
+ /**
1714
+ *
1715
+ * @summary 导入-下载模板
1716
+ * @param {SettingApiCalendarBatchImportTemplateRequest} requestParameters Request parameters.
1717
+ * @param {*} [options] Override http request option.
1718
+ * @throws {RequiredError}
1719
+ */
1720
+ calendarBatchImportTemplate(requestParameters = {}, options) {
1721
+ return localVarFp.calendarBatchImportTemplate(requestParameters.language, options).then((request) => request(axios, basePath));
1722
+ },
1723
+ /**
1724
+ *
1725
+ * @summary 导入-上传文件
1726
+ * @param {SettingApiCalendarBatchImportUploadRequest} requestParameters Request parameters.
1727
+ * @param {*} [options] Override http request option.
1728
+ * @throws {RequiredError}
1729
+ */
1730
+ calendarBatchImportUpload(requestParameters, options) {
1731
+ return localVarFp.calendarBatchImportUpload(requestParameters.parkId, requestParameters.file, requestParameters.language, options).then((request) => request(axios, basePath));
1531
1732
  },
1532
1733
  /**
1533
1734
  *
1534
1735
  * @summary 导出
1535
- * @param {SettingApiExportList2Request} requestParameters Request parameters.
1736
+ * @param {SettingApiCalendarExportRequest} requestParameters Request parameters.
1536
1737
  * @param {*} [options] Override http request option.
1537
1738
  * @throws {RequiredError}
1538
1739
  */
1539
- exportList2(requestParameters, options) {
1540
- return localVarFp.exportList2(requestParameters.year, requestParameters.language, options).then((request) => request(axios, basePath));
1740
+ calendarExport(requestParameters, options) {
1741
+ return localVarFp.calendarExport(requestParameters.year, requestParameters.language, options).then((request) => request(axios, basePath));
1541
1742
  },
1542
1743
  /**
1543
1744
  *
1544
- * @summary 导入-入库
1745
+ * @summary 添加园区设置
1746
+ * @param {SettingApiDeptConfigAddOrUpdateRequest} requestParameters Request parameters.
1545
1747
  * @param {*} [options] Override http request option.
1546
1748
  * @throws {RequiredError}
1547
1749
  */
1548
- exportMysql1(options) {
1549
- return localVarFp.exportMysql1(options).then((request) => request(axios, basePath));
1750
+ deptConfigAddOrUpdate(requestParameters, options) {
1751
+ return localVarFp.deptConfigAddOrUpdate(requestParameters.deptId, requestParameters.configKey, requestParameters.body, options).then((request) => request(axios, basePath));
1550
1752
  },
1551
1753
  /**
1552
1754
  *
1553
- * @summary 导入结果确认
1755
+ * @summary 查询园区设置
1756
+ * @param {SettingApiDeptConfigSelectByParkAndKeyRequest} requestParameters Request parameters.
1554
1757
  * @param {*} [options] Override http request option.
1555
1758
  * @throws {RequiredError}
1556
1759
  */
1557
- exportRedisList1(options) {
1558
- return localVarFp.exportRedisList1(options).then((request) => request(axios, basePath));
1760
+ deptConfigSelectByParkAndKey(requestParameters, options) {
1761
+ return localVarFp.deptConfigSelectByParkAndKey(requestParameters.deptId, requestParameters.configKey, options).then((request) => request(axios, basePath));
1559
1762
  },
1560
1763
  /**
1561
1764
  *
@@ -1587,16 +1790,6 @@ export const SettingApiFactory = function (configuration, basePath, axios) {
1587
1790
  getByDate(requestParameters, options) {
1588
1791
  return localVarFp.getByDate(requestParameters.date, options).then((request) => request(axios, basePath));
1589
1792
  },
1590
- /**
1591
- *
1592
- * @summary 导入redis
1593
- * @param {SettingApiSaveBatchExport1Request} requestParameters Request parameters.
1594
- * @param {*} [options] Override http request option.
1595
- * @throws {RequiredError}
1596
- */
1597
- saveBatchExport1(requestParameters = {}, options) {
1598
- return localVarFp.saveBatchExport1(requestParameters.language, requestParameters.saveWaterMeterBatchRequest, options).then((request) => request(axios, basePath));
1599
- },
1600
1793
  /**
1601
1794
  *
1602
1795
  * @summary 根据时间区间查询
@@ -1649,13 +1842,33 @@ export const SettingApiFactory = function (configuration, basePath, axios) {
1649
1842
  },
1650
1843
  /**
1651
1844
  *
1652
- * @summary 导入模板
1653
- * @param {SettingApiUploadAdd4Request} requestParameters Request parameters.
1845
+ * @summary 新增或修改
1846
+ * @param {SettingApiWorkOrderDeptSettingsAddOrUpdateRequest} requestParameters Request parameters.
1847
+ * @param {*} [options] Override http request option.
1848
+ * @throws {RequiredError}
1849
+ */
1850
+ workOrderDeptSettingsAddOrUpdate(requestParameters, options) {
1851
+ return localVarFp.workOrderDeptSettingsAddOrUpdate(requestParameters.parkId, requestParameters.workOrderType, requestParameters.workOrderDeptSettingsAddOrUpdateVO, options).then((request) => request(axios, basePath));
1852
+ },
1853
+ /**
1854
+ *
1855
+ * @summary 根据工单类型查询
1856
+ * @param {SettingApiWorkOrderDeptSettingsSelectByWorkOrderTypeRequest} requestParameters Request parameters.
1857
+ * @param {*} [options] Override http request option.
1858
+ * @throws {RequiredError}
1859
+ */
1860
+ workOrderDeptSettingsSelectByWorkOrderType(requestParameters, options) {
1861
+ return localVarFp.workOrderDeptSettingsSelectByWorkOrderType(requestParameters.parkId, requestParameters.workOrderType, options).then((request) => request(axios, basePath));
1862
+ },
1863
+ /**
1864
+ *
1865
+ * @summary 根据工单类型和key查询
1866
+ * @param {SettingApiWorkOrderDeptSettingsSelectByWorkOrderTypeAndKeyRequest} requestParameters Request parameters.
1654
1867
  * @param {*} [options] Override http request option.
1655
1868
  * @throws {RequiredError}
1656
1869
  */
1657
- uploadAdd4(requestParameters = {}, options) {
1658
- return localVarFp.uploadAdd4(requestParameters.language, options).then((request) => request(axios, basePath));
1870
+ workOrderDeptSettingsSelectByWorkOrderTypeAndKey(requestParameters, options) {
1871
+ return localVarFp.workOrderDeptSettingsSelectByWorkOrderTypeAndKey(requestParameters.parkId, requestParameters.workOrderType, requestParameters.key, options).then((request) => request(axios, basePath));
1659
1872
  },
1660
1873
  /**
1661
1874
  *
@@ -1798,56 +2011,78 @@ export class SettingApi extends BaseAPI {
1798
2011
  }
1799
2012
  /**
1800
2013
  *
1801
- * @summary 添加园区设置
1802
- * @param {SettingApiDeptConfigAddOrUpdateRequest} requestParameters Request parameters.
2014
+ * @summary 导入-确认
1803
2015
  * @param {*} [options] Override http request option.
1804
2016
  * @throws {RequiredError}
1805
2017
  * @memberof SettingApi
1806
2018
  */
1807
- deptConfigAddOrUpdate(requestParameters, options) {
1808
- return SettingApiFp(this.configuration).deptConfigAddOrUpdate(requestParameters.deptId, requestParameters.configKey, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
2019
+ calendarBatchImportConfirm(options) {
2020
+ return SettingApiFp(this.configuration).calendarBatchImportConfirm(options).then((request) => request(this.axios, this.basePath));
1809
2021
  }
1810
2022
  /**
1811
2023
  *
1812
- * @summary 查询园区设置
1813
- * @param {SettingApiDeptConfigSelectByParkAndKeyRequest} requestParameters Request parameters.
2024
+ * @summary 导入-预览
1814
2025
  * @param {*} [options] Override http request option.
1815
2026
  * @throws {RequiredError}
1816
2027
  * @memberof SettingApi
1817
2028
  */
1818
- deptConfigSelectByParkAndKey(requestParameters, options) {
1819
- return SettingApiFp(this.configuration).deptConfigSelectByParkAndKey(requestParameters.deptId, requestParameters.configKey, options).then((request) => request(this.axios, this.basePath));
2029
+ calendarBatchImportPreView(options) {
2030
+ return SettingApiFp(this.configuration).calendarBatchImportPreView(options).then((request) => request(this.axios, this.basePath));
2031
+ }
2032
+ /**
2033
+ *
2034
+ * @summary 导入-下载模板
2035
+ * @param {SettingApiCalendarBatchImportTemplateRequest} requestParameters Request parameters.
2036
+ * @param {*} [options] Override http request option.
2037
+ * @throws {RequiredError}
2038
+ * @memberof SettingApi
2039
+ */
2040
+ calendarBatchImportTemplate(requestParameters = {}, options) {
2041
+ return SettingApiFp(this.configuration).calendarBatchImportTemplate(requestParameters.language, options).then((request) => request(this.axios, this.basePath));
2042
+ }
2043
+ /**
2044
+ *
2045
+ * @summary 导入-上传文件
2046
+ * @param {SettingApiCalendarBatchImportUploadRequest} requestParameters Request parameters.
2047
+ * @param {*} [options] Override http request option.
2048
+ * @throws {RequiredError}
2049
+ * @memberof SettingApi
2050
+ */
2051
+ calendarBatchImportUpload(requestParameters, options) {
2052
+ return SettingApiFp(this.configuration).calendarBatchImportUpload(requestParameters.parkId, requestParameters.file, requestParameters.language, options).then((request) => request(this.axios, this.basePath));
1820
2053
  }
1821
2054
  /**
1822
2055
  *
1823
2056
  * @summary 导出
1824
- * @param {SettingApiExportList2Request} requestParameters Request parameters.
2057
+ * @param {SettingApiCalendarExportRequest} requestParameters Request parameters.
1825
2058
  * @param {*} [options] Override http request option.
1826
2059
  * @throws {RequiredError}
1827
2060
  * @memberof SettingApi
1828
2061
  */
1829
- exportList2(requestParameters, options) {
1830
- return SettingApiFp(this.configuration).exportList2(requestParameters.year, requestParameters.language, options).then((request) => request(this.axios, this.basePath));
2062
+ calendarExport(requestParameters, options) {
2063
+ return SettingApiFp(this.configuration).calendarExport(requestParameters.year, requestParameters.language, options).then((request) => request(this.axios, this.basePath));
1831
2064
  }
1832
2065
  /**
1833
2066
  *
1834
- * @summary 导入-入库
2067
+ * @summary 添加园区设置
2068
+ * @param {SettingApiDeptConfigAddOrUpdateRequest} requestParameters Request parameters.
1835
2069
  * @param {*} [options] Override http request option.
1836
2070
  * @throws {RequiredError}
1837
2071
  * @memberof SettingApi
1838
2072
  */
1839
- exportMysql1(options) {
1840
- return SettingApiFp(this.configuration).exportMysql1(options).then((request) => request(this.axios, this.basePath));
2073
+ deptConfigAddOrUpdate(requestParameters, options) {
2074
+ return SettingApiFp(this.configuration).deptConfigAddOrUpdate(requestParameters.deptId, requestParameters.configKey, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
1841
2075
  }
1842
2076
  /**
1843
2077
  *
1844
- * @summary 导入结果确认
2078
+ * @summary 查询园区设置
2079
+ * @param {SettingApiDeptConfigSelectByParkAndKeyRequest} requestParameters Request parameters.
1845
2080
  * @param {*} [options] Override http request option.
1846
2081
  * @throws {RequiredError}
1847
2082
  * @memberof SettingApi
1848
2083
  */
1849
- exportRedisList1(options) {
1850
- return SettingApiFp(this.configuration).exportRedisList1(options).then((request) => request(this.axios, this.basePath));
2084
+ deptConfigSelectByParkAndKey(requestParameters, options) {
2085
+ return SettingApiFp(this.configuration).deptConfigSelectByParkAndKey(requestParameters.deptId, requestParameters.configKey, options).then((request) => request(this.axios, this.basePath));
1851
2086
  }
1852
2087
  /**
1853
2088
  *
@@ -1882,17 +2117,6 @@ export class SettingApi extends BaseAPI {
1882
2117
  getByDate(requestParameters, options) {
1883
2118
  return SettingApiFp(this.configuration).getByDate(requestParameters.date, options).then((request) => request(this.axios, this.basePath));
1884
2119
  }
1885
- /**
1886
- *
1887
- * @summary 导入redis
1888
- * @param {SettingApiSaveBatchExport1Request} requestParameters Request parameters.
1889
- * @param {*} [options] Override http request option.
1890
- * @throws {RequiredError}
1891
- * @memberof SettingApi
1892
- */
1893
- saveBatchExport1(requestParameters = {}, options) {
1894
- return SettingApiFp(this.configuration).saveBatchExport1(requestParameters.language, requestParameters.saveWaterMeterBatchRequest, options).then((request) => request(this.axios, this.basePath));
1895
- }
1896
2120
  /**
1897
2121
  *
1898
2122
  * @summary 根据时间区间查询
@@ -1950,14 +2174,36 @@ export class SettingApi extends BaseAPI {
1950
2174
  }
1951
2175
  /**
1952
2176
  *
1953
- * @summary 导入模板
1954
- * @param {SettingApiUploadAdd4Request} requestParameters Request parameters.
2177
+ * @summary 新增或修改
2178
+ * @param {SettingApiWorkOrderDeptSettingsAddOrUpdateRequest} requestParameters Request parameters.
2179
+ * @param {*} [options] Override http request option.
2180
+ * @throws {RequiredError}
2181
+ * @memberof SettingApi
2182
+ */
2183
+ workOrderDeptSettingsAddOrUpdate(requestParameters, options) {
2184
+ return SettingApiFp(this.configuration).workOrderDeptSettingsAddOrUpdate(requestParameters.parkId, requestParameters.workOrderType, requestParameters.workOrderDeptSettingsAddOrUpdateVO, options).then((request) => request(this.axios, this.basePath));
2185
+ }
2186
+ /**
2187
+ *
2188
+ * @summary 根据工单类型查询
2189
+ * @param {SettingApiWorkOrderDeptSettingsSelectByWorkOrderTypeRequest} requestParameters Request parameters.
2190
+ * @param {*} [options] Override http request option.
2191
+ * @throws {RequiredError}
2192
+ * @memberof SettingApi
2193
+ */
2194
+ workOrderDeptSettingsSelectByWorkOrderType(requestParameters, options) {
2195
+ return SettingApiFp(this.configuration).workOrderDeptSettingsSelectByWorkOrderType(requestParameters.parkId, requestParameters.workOrderType, options).then((request) => request(this.axios, this.basePath));
2196
+ }
2197
+ /**
2198
+ *
2199
+ * @summary 根据工单类型和key查询
2200
+ * @param {SettingApiWorkOrderDeptSettingsSelectByWorkOrderTypeAndKeyRequest} requestParameters Request parameters.
1955
2201
  * @param {*} [options] Override http request option.
1956
2202
  * @throws {RequiredError}
1957
2203
  * @memberof SettingApi
1958
2204
  */
1959
- uploadAdd4(requestParameters = {}, options) {
1960
- return SettingApiFp(this.configuration).uploadAdd4(requestParameters.language, options).then((request) => request(this.axios, this.basePath));
2205
+ workOrderDeptSettingsSelectByWorkOrderTypeAndKey(requestParameters, options) {
2206
+ return SettingApiFp(this.configuration).workOrderDeptSettingsSelectByWorkOrderTypeAndKey(requestParameters.parkId, requestParameters.workOrderType, requestParameters.key, options).then((request) => request(this.axios, this.basePath));
1961
2207
  }
1962
2208
  /**
1963
2209
  *