@gizone/rrs-client 3.11.12-alpha.9 → 3.11.13-alpha.61

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 (357) 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 +8 -8
  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-dto.d.ts +147 -0
  99. package/dist/esm/models/inspection-standard-import-dto.d.ts +114 -0
  100. package/dist/esm/models/json-result-excel-import-result-dtocalendar-export-dto.d.ts +56 -0
  101. package/dist/esm/models/json-result-excel-import-result-dtoinspection-standard-import-dto.d.ts +56 -0
  102. package/dist/esm/models/json-result-excel-import-result-dtomaintenance-standard-import-dto.d.ts +56 -0
  103. package/dist/esm/models/{json-result-page-dto-inspection-standard-entity.d.ts → json-result-list-inspection-standard-entity.d.ts} +12 -12
  104. package/dist/esm/models/json-result-list-work-order-dept-settings-entity.d.ts +56 -0
  105. package/dist/esm/models/json-result-page-dto-inspection-standard-dto.d.ts +56 -0
  106. 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
  107. package/dist/esm/models/json-result-page-dto-sys-user-msg-dto.js +14 -0
  108. package/dist/esm/models/{json-result-sys-user-msg-do.d.ts → json-result-park-info-dto.d.ts} +11 -11
  109. package/dist/esm/models/json-result-park-info-dto.js +14 -0
  110. package/dist/esm/models/{json-result-calendar-add-redis-list-vo.d.ts → json-result-sys-user-msg-dto.d.ts} +11 -11
  111. package/dist/esm/models/json-result-sys-user-msg-dto.js +14 -0
  112. 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
  113. package/dist/esm/models/json-result-work-order-dept-settings-entity.js +14 -0
  114. package/dist/esm/models/maintenance-standard-import-dto.d.ts +114 -0
  115. package/dist/esm/models/maintenance-standard-import-dto.js +14 -0
  116. package/dist/{models/page-dto-inspection-standard-entity.d.ts → esm/models/page-dto-inspection-standard-dto.d.ts} +7 -7
  117. package/dist/esm/models/page-dto-inspection-standard-dto.js +14 -0
  118. package/dist/esm/models/{page-dto-sys-user-msg-list-dto.d.ts → page-dto-sys-user-msg-dto.d.ts} +7 -7
  119. package/dist/esm/models/page-dto-sys-user-msg-dto.js +14 -0
  120. package/dist/esm/models/park-center-attribute-enum.d.ts +21 -0
  121. package/dist/esm/models/park-center-attribute-enum.js +22 -0
  122. package/dist/esm/models/park-info-dto.d.ts +85 -0
  123. package/dist/esm/models/park-info-dto.js +14 -0
  124. package/dist/esm/models/park-info-edit-vo.d.ts +37 -0
  125. package/dist/esm/models/park-info-edit-vo.js +14 -0
  126. package/dist/esm/models/park-plat-form-enum.d.ts +23 -0
  127. package/dist/esm/models/park-plat-form-enum.js +24 -0
  128. package/dist/esm/models/period-detail-resp.d.ts +6 -0
  129. package/dist/esm/models/plan-add-vo.d.ts +1 -1
  130. package/dist/esm/models/plan-edit-vo.d.ts +1 -1
  131. package/dist/esm/models/plan-item-add-vo.d.ts +1 -1
  132. package/dist/esm/models/plan-item-edit-vo.d.ts +1 -1
  133. package/dist/esm/models/process-work-order-vo.d.ts +19 -0
  134. package/dist/esm/models/source-work-order-inspection-dto.d.ts +4 -3
  135. package/dist/esm/models/space-add-excel-dto.d.ts +6 -0
  136. package/dist/esm/models/sys-dept.d.ts +7 -1
  137. package/dist/esm/models/{sys-user-msg-list-dto.d.ts → sys-user-msg-dto.d.ts} +30 -28
  138. package/dist/esm/models/sys-user-msg-dto.js +14 -0
  139. package/dist/esm/models/sys-user.d.ts +4 -4
  140. package/dist/esm/models/system-user-msg-source-type-enum.d.ts +23 -0
  141. package/dist/esm/models/system-user-msg-source-type-enum.js +24 -0
  142. package/dist/esm/models/system-user-msg-type-enum.d.ts +21 -0
  143. package/dist/esm/models/system-user-msg-type-enum.js +22 -0
  144. package/dist/esm/models/work-order-add-vo.d.ts +24 -4
  145. package/dist/esm/models/work-order-circulation-vo.d.ts +8 -1
  146. package/dist/esm/models/work-order-dept-settings-add-or-update-vo.d.ts +36 -0
  147. package/dist/esm/models/work-order-dept-settings-add-or-update-vo.js +14 -0
  148. package/dist/esm/models/work-order-dept-settings-entity.d.ts +67 -0
  149. package/dist/esm/models/work-order-dept-settings-entity.js +14 -0
  150. package/dist/esm/models/work-order-detail-dto.d.ts +46 -0
  151. package/dist/esm/models/work-order-internal-status-enum.d.ts +23 -0
  152. package/dist/esm/models/work-order-internal-status-enum.js +24 -0
  153. package/dist/esm/models/work-order-issue-type-enum.d.ts +26 -0
  154. package/dist/esm/models/work-order-issue-type-enum.js +27 -0
  155. package/dist/esm/models/work-order-liability-party-enum.d.ts +21 -0
  156. package/dist/esm/models/work-order-liability-party-enum.js +22 -0
  157. package/dist/esm/models/work-order-push-settings-entity.d.ts +4 -17
  158. package/dist/esm/models/work-order-push-settings-entity.js +1 -13
  159. package/dist/esm/models/work-order-push-settings-save-or-update-vo.d.ts +4 -17
  160. package/dist/esm/models/work-order-push-settings-save-or-update-vo.js +1 -13
  161. package/dist/esm/models/work-order-report-vo.d.ts +31 -0
  162. package/dist/esm/models/work-order-report-vo.js +14 -0
  163. package/dist/esm/models/work-order-settings-type-enum.d.ts +30 -0
  164. package/dist/esm/models/work-order-settings-type-enum.js +31 -0
  165. package/dist/esm/models/work-order-staging-data-vo.d.ts +49 -0
  166. package/dist/esm/models/work-order-staging-data-vo.js +14 -0
  167. package/dist/esm/models/work-order-type-enum.d.ts +1 -1
  168. package/dist/esm/models/work-order-type-enum.js +1 -1
  169. package/dist/models/dept-relation-dto.d.ts +140 -0
  170. package/dist/models/dept-relation.d.ts +86 -0
  171. package/dist/models/equipment-detail-dto.d.ts +6 -0
  172. package/dist/models/equipment-edit-vo.d.ts +6 -0
  173. package/dist/models/equipment-excel-add-dto.d.ts +6 -0
  174. package/dist/models/equipment-search-system-dto.d.ts +12 -6
  175. package/dist/models/equipment-system-add-vo.d.ts +1 -1
  176. package/dist/models/{calendar-add-redis-list-vo.d.ts → excel-import-result-dtocalendar-export-dto.d.ts} +9 -21
  177. package/dist/models/excel-import-result-dtoinspection-standard-import-dto.d.ts +31 -0
  178. package/dist/models/excel-import-result-dtomaintenance-standard-import-dto.d.ts +31 -0
  179. package/dist/models/file-dto.d.ts +3 -3
  180. package/dist/models/get-user-wx200-response.d.ts +8 -8
  181. package/dist/models/index.d.ts +35 -13
  182. package/dist/models/index.js +35 -13
  183. package/dist/models/inspection-point-item.d.ts +12 -0
  184. package/dist/models/inspection-standard-dto.d.ts +147 -0
  185. package/dist/models/inspection-standard-import-dto.d.ts +114 -0
  186. package/dist/models/json-result-excel-import-result-dtocalendar-export-dto.d.ts +56 -0
  187. package/dist/models/json-result-excel-import-result-dtoinspection-standard-import-dto.d.ts +56 -0
  188. package/dist/models/json-result-excel-import-result-dtomaintenance-standard-import-dto.d.ts +56 -0
  189. package/dist/models/json-result-list-inspection-standard-entity.d.ts +56 -0
  190. package/dist/models/json-result-list-work-order-dept-settings-entity.d.ts +56 -0
  191. package/dist/models/json-result-page-dto-inspection-standard-dto.d.ts +56 -0
  192. package/dist/models/json-result-page-dto-sys-user-msg-dto.d.ts +56 -0
  193. package/dist/models/json-result-page-dto-sys-user-msg-dto.js +15 -0
  194. package/dist/models/{json-result-sys-user-msg-do.d.ts → json-result-park-info-dto.d.ts} +11 -11
  195. package/dist/models/json-result-park-info-dto.js +15 -0
  196. package/dist/models/json-result-sys-user-msg-dto.d.ts +56 -0
  197. package/dist/models/json-result-sys-user-msg-dto.js +15 -0
  198. 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
  199. package/dist/models/json-result-work-order-dept-settings-entity.js +15 -0
  200. package/dist/models/maintenance-standard-import-dto.d.ts +114 -0
  201. package/dist/models/maintenance-standard-import-dto.js +15 -0
  202. package/dist/{esm/models/page-dto-inspection-standard-entity.d.ts → models/page-dto-inspection-standard-dto.d.ts} +7 -7
  203. package/dist/models/page-dto-inspection-standard-dto.js +15 -0
  204. package/dist/models/{page-dto-sys-user-msg-list-dto.d.ts → page-dto-sys-user-msg-dto.d.ts} +7 -7
  205. package/dist/models/page-dto-sys-user-msg-dto.js +15 -0
  206. package/dist/models/park-center-attribute-enum.d.ts +21 -0
  207. package/dist/models/park-center-attribute-enum.js +25 -0
  208. package/dist/models/park-info-dto.d.ts +85 -0
  209. package/dist/models/park-info-dto.js +15 -0
  210. package/dist/models/park-info-edit-vo.d.ts +37 -0
  211. package/dist/models/park-info-edit-vo.js +15 -0
  212. package/dist/models/park-plat-form-enum.d.ts +23 -0
  213. package/dist/models/park-plat-form-enum.js +27 -0
  214. package/dist/models/period-detail-resp.d.ts +6 -0
  215. package/dist/models/plan-add-vo.d.ts +1 -1
  216. package/dist/models/plan-edit-vo.d.ts +1 -1
  217. package/dist/models/plan-item-add-vo.d.ts +1 -1
  218. package/dist/models/plan-item-edit-vo.d.ts +1 -1
  219. package/dist/models/process-work-order-vo.d.ts +19 -0
  220. package/dist/models/source-work-order-inspection-dto.d.ts +4 -3
  221. package/dist/models/space-add-excel-dto.d.ts +6 -0
  222. package/dist/models/sys-dept.d.ts +7 -1
  223. package/dist/models/{sys-user-msg-list-dto.d.ts → sys-user-msg-dto.d.ts} +30 -28
  224. package/dist/models/sys-user-msg-dto.js +15 -0
  225. package/dist/models/sys-user.d.ts +4 -4
  226. package/dist/models/system-user-msg-source-type-enum.d.ts +23 -0
  227. package/dist/models/system-user-msg-source-type-enum.js +27 -0
  228. package/dist/models/system-user-msg-type-enum.d.ts +21 -0
  229. package/dist/models/system-user-msg-type-enum.js +25 -0
  230. package/dist/models/work-order-add-vo.d.ts +24 -4
  231. package/dist/models/work-order-circulation-vo.d.ts +8 -1
  232. package/dist/models/work-order-dept-settings-add-or-update-vo.d.ts +36 -0
  233. package/dist/models/work-order-dept-settings-add-or-update-vo.js +15 -0
  234. package/dist/models/work-order-dept-settings-entity.d.ts +67 -0
  235. package/dist/models/work-order-dept-settings-entity.js +15 -0
  236. package/dist/models/work-order-detail-dto.d.ts +46 -0
  237. package/dist/models/work-order-internal-status-enum.d.ts +23 -0
  238. package/dist/models/work-order-internal-status-enum.js +27 -0
  239. package/dist/models/work-order-issue-type-enum.d.ts +26 -0
  240. package/dist/models/work-order-issue-type-enum.js +30 -0
  241. package/dist/models/work-order-liability-party-enum.d.ts +21 -0
  242. package/dist/models/work-order-liability-party-enum.js +25 -0
  243. package/dist/models/work-order-push-settings-entity.d.ts +4 -17
  244. package/dist/models/work-order-push-settings-entity.js +0 -14
  245. package/dist/models/work-order-push-settings-save-or-update-vo.d.ts +4 -17
  246. package/dist/models/work-order-push-settings-save-or-update-vo.js +0 -14
  247. package/dist/models/work-order-report-vo.d.ts +31 -0
  248. package/dist/models/work-order-report-vo.js +15 -0
  249. package/dist/models/work-order-settings-type-enum.d.ts +30 -0
  250. package/dist/models/work-order-settings-type-enum.js +34 -0
  251. package/dist/models/work-order-staging-data-vo.d.ts +49 -0
  252. package/dist/models/work-order-staging-data-vo.js +15 -0
  253. package/dist/models/work-order-type-enum.d.ts +1 -1
  254. package/dist/models/work-order-type-enum.js +1 -1
  255. package/models/dept-relation-dto.ts +152 -0
  256. package/models/dept-relation.ts +98 -0
  257. package/models/equipment-detail-dto.ts +6 -0
  258. package/models/equipment-edit-vo.ts +6 -0
  259. package/models/equipment-excel-add-dto.ts +6 -0
  260. package/models/equipment-search-system-dto.ts +12 -6
  261. package/models/equipment-system-add-vo.ts +1 -1
  262. package/models/{calendar-add-redis-list-vo.ts → excel-import-result-dtocalendar-export-dto.ts} +9 -21
  263. package/models/excel-import-result-dtoinspection-standard-import-dto.ts +39 -0
  264. package/models/excel-import-result-dtomaintenance-standard-import-dto.ts +39 -0
  265. package/models/file-dto.ts +3 -3
  266. package/models/get-user-wx200-response.ts +8 -8
  267. package/models/index.ts +35 -13
  268. package/models/inspection-point-item.ts +12 -0
  269. package/models/inspection-standard-dto.ts +161 -0
  270. package/models/inspection-standard-import-dto.ts +120 -0
  271. package/models/json-result-excel-import-result-dtocalendar-export-dto.ts +66 -0
  272. package/models/json-result-excel-import-result-dtoinspection-standard-import-dto.ts +66 -0
  273. package/models/json-result-excel-import-result-dtomaintenance-standard-import-dto.ts +66 -0
  274. package/models/{json-result-page-dto-inspection-standard-entity.ts → json-result-list-inspection-standard-entity.ts} +12 -12
  275. package/models/json-result-list-work-order-dept-settings-entity.ts +66 -0
  276. package/models/json-result-page-dto-inspection-standard-dto.ts +66 -0
  277. package/models/{json-result-calendar-add-redis-list-vo.ts → json-result-page-dto-sys-user-msg-dto.ts} +11 -11
  278. package/models/{json-result-sys-user-msg-do.ts → json-result-park-info-dto.ts} +11 -11
  279. package/models/{json-result-page-dto-sys-user-msg-list-dto.ts → json-result-sys-user-msg-dto.ts} +11 -11
  280. package/models/{json-result-space-edit-before-and-after-dto.ts → json-result-work-order-dept-settings-entity.ts} +11 -11
  281. package/models/maintenance-standard-import-dto.ts +120 -0
  282. package/models/{page-dto-inspection-standard-entity.ts → page-dto-inspection-standard-dto.ts} +7 -7
  283. package/models/{page-dto-sys-user-msg-list-dto.ts → page-dto-sys-user-msg-dto.ts} +7 -7
  284. package/models/park-center-attribute-enum.ts +31 -0
  285. package/models/park-info-dto.ts +93 -0
  286. package/models/park-info-edit-vo.ts +45 -0
  287. package/models/park-plat-form-enum.ts +33 -0
  288. package/models/period-detail-resp.ts +6 -0
  289. package/models/plan-add-vo.ts +1 -1
  290. package/models/plan-edit-vo.ts +1 -1
  291. package/models/plan-item-add-vo.ts +1 -1
  292. package/models/plan-item-edit-vo.ts +1 -1
  293. package/models/process-work-order-vo.ts +23 -0
  294. package/models/source-work-order-inspection-dto.ts +8 -3
  295. package/models/space-add-excel-dto.ts +6 -0
  296. package/models/sys-dept.ts +7 -1
  297. package/models/{sys-user-msg-list-dto.ts → sys-user-msg-dto.ts} +36 -28
  298. package/models/sys-user.ts +4 -4
  299. package/models/system-user-msg-source-type-enum.ts +33 -0
  300. package/models/system-user-msg-type-enum.ts +31 -0
  301. package/models/work-order-add-vo.ts +28 -4
  302. package/models/work-order-circulation-vo.ts +12 -1
  303. package/models/work-order-dept-settings-add-or-update-vo.ts +42 -0
  304. package/models/work-order-dept-settings-entity.ts +77 -0
  305. package/models/work-order-detail-dto.ts +54 -0
  306. package/models/work-order-internal-status-enum.ts +33 -0
  307. package/models/work-order-issue-type-enum.ts +36 -0
  308. package/models/work-order-liability-party-enum.ts +31 -0
  309. package/models/work-order-push-settings-entity.ts +6 -18
  310. package/models/work-order-push-settings-save-or-update-vo.ts +6 -18
  311. package/models/{space-edit-before-and-after-dto.ts → work-order-report-vo.ts} +13 -11
  312. package/models/work-order-settings-type-enum.ts +40 -0
  313. package/models/work-order-staging-data-vo.ts +59 -0
  314. package/models/work-order-type-enum.ts +1 -1
  315. package/package.json +1 -1
  316. package/dist/apis/inspection-api.d.ts +0 -846
  317. package/dist/esm/apis/inspection-api.d.ts +0 -846
  318. package/dist/esm/models/space-edit-before-and-after-dto.d.ts +0 -31
  319. package/dist/esm/models/space-edit-excel-dto.d.ts +0 -78
  320. package/dist/esm/models/sys-user-msg-do.d.ts +0 -90
  321. package/dist/esm/models/sys-user-msg-search-list-vo.d.ts +0 -54
  322. package/dist/models/json-result-page-dto-inspection-standard-entity.d.ts +0 -56
  323. package/dist/models/json-result-page-dto-sys-user-msg-list-dto.d.ts +0 -56
  324. package/dist/models/json-result-space-edit-before-and-after-dto.d.ts +0 -56
  325. package/dist/models/space-edit-before-and-after-dto.d.ts +0 -31
  326. package/dist/models/space-edit-excel-dto.d.ts +0 -78
  327. package/dist/models/sys-user-msg-do.d.ts +0 -90
  328. package/dist/models/sys-user-msg-search-list-vo.d.ts +0 -54
  329. package/models/space-edit-excel-dto.ts +0 -84
  330. package/models/sys-user-msg-do.ts +0 -96
  331. package/models/sys-user-msg-search-list-vo.ts +0 -60
  332. /package/dist/esm/models/{calendar-add-redis-list-vo.js → dept-relation-dto.js} +0 -0
  333. /package/dist/esm/models/{json-result-calendar-add-redis-list-vo.js → dept-relation.js} +0 -0
  334. /package/dist/esm/models/{json-result-page-dto-inspection-standard-entity.js → excel-import-result-dtocalendar-export-dto.js} +0 -0
  335. /package/dist/esm/models/{json-result-page-dto-sys-user-msg-list-dto.js → excel-import-result-dtoinspection-standard-import-dto.js} +0 -0
  336. /package/dist/esm/models/{json-result-space-edit-before-and-after-dto.js → excel-import-result-dtomaintenance-standard-import-dto.js} +0 -0
  337. /package/dist/esm/models/{json-result-sys-user-msg-do.js → inspection-standard-dto.js} +0 -0
  338. /package/dist/esm/models/{page-dto-inspection-standard-entity.js → inspection-standard-import-dto.js} +0 -0
  339. /package/dist/esm/models/{page-dto-sys-user-msg-list-dto.js → json-result-excel-import-result-dtocalendar-export-dto.js} +0 -0
  340. /package/dist/esm/models/{space-edit-before-and-after-dto.js → json-result-excel-import-result-dtoinspection-standard-import-dto.js} +0 -0
  341. /package/dist/esm/models/{space-edit-excel-dto.js → json-result-excel-import-result-dtomaintenance-standard-import-dto.js} +0 -0
  342. /package/dist/esm/models/{sys-user-msg-do.js → json-result-list-inspection-standard-entity.js} +0 -0
  343. /package/dist/esm/models/{sys-user-msg-list-dto.js → json-result-list-work-order-dept-settings-entity.js} +0 -0
  344. /package/dist/esm/models/{sys-user-msg-search-list-vo.js → json-result-page-dto-inspection-standard-dto.js} +0 -0
  345. /package/dist/models/{calendar-add-redis-list-vo.js → dept-relation-dto.js} +0 -0
  346. /package/dist/models/{json-result-calendar-add-redis-list-vo.js → dept-relation.js} +0 -0
  347. /package/dist/models/{json-result-page-dto-inspection-standard-entity.js → excel-import-result-dtocalendar-export-dto.js} +0 -0
  348. /package/dist/models/{json-result-page-dto-sys-user-msg-list-dto.js → excel-import-result-dtoinspection-standard-import-dto.js} +0 -0
  349. /package/dist/models/{json-result-space-edit-before-and-after-dto.js → excel-import-result-dtomaintenance-standard-import-dto.js} +0 -0
  350. /package/dist/models/{json-result-sys-user-msg-do.js → inspection-standard-dto.js} +0 -0
  351. /package/dist/models/{page-dto-inspection-standard-entity.js → inspection-standard-import-dto.js} +0 -0
  352. /package/dist/models/{page-dto-sys-user-msg-list-dto.js → json-result-excel-import-result-dtocalendar-export-dto.js} +0 -0
  353. /package/dist/models/{space-edit-before-and-after-dto.js → json-result-excel-import-result-dtoinspection-standard-import-dto.js} +0 -0
  354. /package/dist/models/{space-edit-excel-dto.js → json-result-excel-import-result-dtomaintenance-standard-import-dto.js} +0 -0
  355. /package/dist/models/{sys-user-msg-do.js → json-result-list-inspection-standard-entity.js} +0 -0
  356. /package/dist/models/{sys-user-msg-list-dto.js → json-result-list-work-order-dept-settings-entity.js} +0 -0
  357. /package/dist/models/{sys-user-msg-search-list-vo.js → json-result-page-dto-inspection-standard-dto.js} +0 -0
@@ -378,23 +378,12 @@ const SettingApiAxiosParamCreator = function (configuration) {
378
378
  }),
379
379
  /**
380
380
  *
381
- * @summary 添加园区设置
382
- * @param {number} deptId
383
- * @param {string} configKey
384
- * @param {object} body
381
+ * @summary 导入-确认
385
382
  * @param {*} [options] Override http request option.
386
383
  * @throws {RequiredError}
387
384
  */
388
- 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 = {}) {
389
- // verify required parameter 'deptId' is not null or undefined
390
- (0, common_1.assertParamExists)('deptConfigAddOrUpdate', 'deptId', deptId);
391
- // verify required parameter 'configKey' is not null or undefined
392
- (0, common_1.assertParamExists)('deptConfigAddOrUpdate', 'configKey', configKey);
393
- // verify required parameter 'body' is not null or undefined
394
- (0, common_1.assertParamExists)('deptConfigAddOrUpdate', 'body', body);
395
- const localVarPath = `/deptConfig/{deptId}/{configKey}`
396
- .replace(`{${"deptId"}}`, encodeURIComponent(String(deptId)))
397
- .replace(`{${"configKey"}}`, encodeURIComponent(String(configKey)));
385
+ calendarBatchImportConfirm: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
386
+ const localVarPath = `/calendar/batchImport/confirm`;
398
387
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
399
388
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
400
389
  let baseOptions;
@@ -407,11 +396,9 @@ const SettingApiAxiosParamCreator = function (configuration) {
407
396
  // authentication tokenScheme required
408
397
  // http bearer authentication required
409
398
  yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
410
- localVarHeaderParameter['Content-Type'] = 'application/json';
411
399
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
412
400
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
413
401
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
414
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(body, localVarRequestOptions, configuration);
415
402
  return {
416
403
  url: (0, common_1.toPathString)(localVarUrlObj),
417
404
  options: localVarRequestOptions,
@@ -419,20 +406,41 @@ const SettingApiAxiosParamCreator = function (configuration) {
419
406
  }),
420
407
  /**
421
408
  *
422
- * @summary 查询园区设置
423
- * @param {number} deptId
424
- * @param {string} configKey
409
+ * @summary 导入-预览
425
410
  * @param {*} [options] Override http request option.
426
411
  * @throws {RequiredError}
427
412
  */
428
- deptConfigSelectByParkAndKey: (deptId_1, configKey_1, ...args_1) => __awaiter(this, [deptId_1, configKey_1, ...args_1], void 0, function* (deptId, configKey, options = {}) {
429
- // verify required parameter 'deptId' is not null or undefined
430
- (0, common_1.assertParamExists)('deptConfigSelectByParkAndKey', 'deptId', deptId);
431
- // verify required parameter 'configKey' is not null or undefined
432
- (0, common_1.assertParamExists)('deptConfigSelectByParkAndKey', 'configKey', configKey);
433
- const localVarPath = `/deptConfig/{deptId}/{configKey}`
434
- .replace(`{${"deptId"}}`, encodeURIComponent(String(deptId)))
435
- .replace(`{${"configKey"}}`, encodeURIComponent(String(configKey)));
413
+ calendarBatchImportPreView: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
414
+ const localVarPath = `/calendar/batchImport/preView`;
415
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
416
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
417
+ let baseOptions;
418
+ if (configuration) {
419
+ baseOptions = configuration.baseOptions;
420
+ }
421
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
422
+ const localVarHeaderParameter = {};
423
+ const localVarQueryParameter = {};
424
+ // authentication tokenScheme required
425
+ // http bearer authentication required
426
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
427
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
428
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
429
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
430
+ return {
431
+ url: (0, common_1.toPathString)(localVarUrlObj),
432
+ options: localVarRequestOptions,
433
+ };
434
+ }),
435
+ /**
436
+ *
437
+ * @summary 导入-下载模板
438
+ * @param {string} [language]
439
+ * @param {*} [options] Override http request option.
440
+ * @throws {RequiredError}
441
+ */
442
+ calendarBatchImportTemplate: (language_1, ...args_1) => __awaiter(this, [language_1, ...args_1], void 0, function* (language, options = {}) {
443
+ const localVarPath = `/calendar/batchImport/template`;
436
444
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
437
445
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
438
446
  let baseOptions;
@@ -445,6 +453,9 @@ const SettingApiAxiosParamCreator = function (configuration) {
445
453
  // authentication tokenScheme required
446
454
  // http bearer authentication required
447
455
  yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
456
+ if (language !== undefined) {
457
+ localVarQueryParameter['language'] = language;
458
+ }
448
459
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
449
460
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
450
461
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -453,6 +464,53 @@ const SettingApiAxiosParamCreator = function (configuration) {
453
464
  options: localVarRequestOptions,
454
465
  };
455
466
  }),
467
+ /**
468
+ *
469
+ * @summary 导入-上传文件
470
+ * @param {number} parkId 园区id
471
+ * @param {File} file
472
+ * @param {string} [language] 语言
473
+ * @param {*} [options] Override http request option.
474
+ * @throws {RequiredError}
475
+ */
476
+ 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 = {}) {
477
+ // verify required parameter 'parkId' is not null or undefined
478
+ (0, common_1.assertParamExists)('calendarBatchImportUpload', 'parkId', parkId);
479
+ // verify required parameter 'file' is not null or undefined
480
+ (0, common_1.assertParamExists)('calendarBatchImportUpload', 'file', file);
481
+ const localVarPath = `/calendar/batchImport/upload`;
482
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
483
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
484
+ let baseOptions;
485
+ if (configuration) {
486
+ baseOptions = configuration.baseOptions;
487
+ }
488
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
489
+ const localVarHeaderParameter = {};
490
+ const localVarQueryParameter = {};
491
+ const localVarFormParams = new ((configuration && configuration.formDataCtor) || FormData)();
492
+ // authentication tokenScheme required
493
+ // http bearer authentication required
494
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
495
+ if (parkId !== undefined) {
496
+ localVarFormParams.append('parkId', parkId);
497
+ }
498
+ if (language !== undefined) {
499
+ localVarFormParams.append('language', language);
500
+ }
501
+ if (file !== undefined) {
502
+ localVarFormParams.append('file', file);
503
+ }
504
+ localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
505
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
506
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
507
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
508
+ localVarRequestOptions.data = localVarFormParams;
509
+ return {
510
+ url: (0, common_1.toPathString)(localVarUrlObj),
511
+ options: localVarRequestOptions,
512
+ };
513
+ }),
456
514
  /**
457
515
  *
458
516
  * @summary 导出
@@ -461,10 +519,10 @@ const SettingApiAxiosParamCreator = function (configuration) {
461
519
  * @param {*} [options] Override http request option.
462
520
  * @throws {RequiredError}
463
521
  */
464
- exportList2: (year_1, language_1, ...args_1) => __awaiter(this, [year_1, language_1, ...args_1], void 0, function* (year, language, options = {}) {
522
+ calendarExport: (year_1, language_1, ...args_1) => __awaiter(this, [year_1, language_1, ...args_1], void 0, function* (year, language, options = {}) {
465
523
  // verify required parameter 'year' is not null or undefined
466
- (0, common_1.assertParamExists)('exportList2', 'year', year);
467
- const localVarPath = `/calendar/exportList/{year}`
524
+ (0, common_1.assertParamExists)('calendarExport', 'year', year);
525
+ const localVarPath = `/calendar/export/{year}`
468
526
  .replace(`{${"year"}}`, encodeURIComponent(String(year)));
469
527
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
470
528
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -491,27 +549,40 @@ const SettingApiAxiosParamCreator = function (configuration) {
491
549
  }),
492
550
  /**
493
551
  *
494
- * @summary 导入-入库
552
+ * @summary 添加园区设置
553
+ * @param {number} deptId
554
+ * @param {string} configKey
555
+ * @param {object} body
495
556
  * @param {*} [options] Override http request option.
496
557
  * @throws {RequiredError}
497
558
  */
498
- exportMysql1: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
499
- const localVarPath = `/calendar/exportMysql`;
559
+ 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 = {}) {
560
+ // verify required parameter 'deptId' is not null or undefined
561
+ (0, common_1.assertParamExists)('deptConfigAddOrUpdate', 'deptId', deptId);
562
+ // verify required parameter 'configKey' is not null or undefined
563
+ (0, common_1.assertParamExists)('deptConfigAddOrUpdate', 'configKey', configKey);
564
+ // verify required parameter 'body' is not null or undefined
565
+ (0, common_1.assertParamExists)('deptConfigAddOrUpdate', 'body', body);
566
+ const localVarPath = `/deptConfig/{deptId}/{configKey}`
567
+ .replace(`{${"deptId"}}`, encodeURIComponent(String(deptId)))
568
+ .replace(`{${"configKey"}}`, encodeURIComponent(String(configKey)));
500
569
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
501
570
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
502
571
  let baseOptions;
503
572
  if (configuration) {
504
573
  baseOptions = configuration.baseOptions;
505
574
  }
506
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
575
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
507
576
  const localVarHeaderParameter = {};
508
577
  const localVarQueryParameter = {};
509
578
  // authentication tokenScheme required
510
579
  // http bearer authentication required
511
580
  yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
581
+ localVarHeaderParameter['Content-Type'] = 'application/json';
512
582
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
513
583
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
514
584
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
585
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(body, localVarRequestOptions, configuration);
515
586
  return {
516
587
  url: (0, common_1.toPathString)(localVarUrlObj),
517
588
  options: localVarRequestOptions,
@@ -519,12 +590,20 @@ const SettingApiAxiosParamCreator = function (configuration) {
519
590
  }),
520
591
  /**
521
592
  *
522
- * @summary 导入结果确认
593
+ * @summary 查询园区设置
594
+ * @param {number} deptId
595
+ * @param {string} configKey
523
596
  * @param {*} [options] Override http request option.
524
597
  * @throws {RequiredError}
525
598
  */
526
- exportRedisList1: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
527
- const localVarPath = `/calendar/exportRedisList`;
599
+ deptConfigSelectByParkAndKey: (deptId_1, configKey_1, ...args_1) => __awaiter(this, [deptId_1, configKey_1, ...args_1], void 0, function* (deptId, configKey, options = {}) {
600
+ // verify required parameter 'deptId' is not null or undefined
601
+ (0, common_1.assertParamExists)('deptConfigSelectByParkAndKey', 'deptId', deptId);
602
+ // verify required parameter 'configKey' is not null or undefined
603
+ (0, common_1.assertParamExists)('deptConfigSelectByParkAndKey', 'configKey', configKey);
604
+ const localVarPath = `/deptConfig/{deptId}/{configKey}`
605
+ .replace(`{${"deptId"}}`, encodeURIComponent(String(deptId)))
606
+ .replace(`{${"configKey"}}`, encodeURIComponent(String(configKey)));
528
607
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
529
608
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
530
609
  let baseOptions;
@@ -647,41 +726,6 @@ const SettingApiAxiosParamCreator = function (configuration) {
647
726
  options: localVarRequestOptions,
648
727
  };
649
728
  }),
650
- /**
651
- *
652
- * @summary 导入redis
653
- * @param {string} [language]
654
- * @param {SaveWaterMeterBatchRequest} [saveWaterMeterBatchRequest]
655
- * @param {*} [options] Override http request option.
656
- * @throws {RequiredError}
657
- */
658
- saveBatchExport1: (language_1, saveWaterMeterBatchRequest_1, ...args_1) => __awaiter(this, [language_1, saveWaterMeterBatchRequest_1, ...args_1], void 0, function* (language, saveWaterMeterBatchRequest, options = {}) {
659
- const localVarPath = `/calendar/saveBatchExport`;
660
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
661
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
662
- let baseOptions;
663
- if (configuration) {
664
- baseOptions = configuration.baseOptions;
665
- }
666
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
667
- const localVarHeaderParameter = {};
668
- const localVarQueryParameter = {};
669
- // authentication tokenScheme required
670
- // http bearer authentication required
671
- yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
672
- if (language !== undefined) {
673
- localVarQueryParameter['language'] = language;
674
- }
675
- localVarHeaderParameter['Content-Type'] = 'application/json';
676
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
677
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
678
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
679
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(saveWaterMeterBatchRequest, localVarRequestOptions, configuration);
680
- return {
681
- url: (0, common_1.toPathString)(localVarUrlObj),
682
- options: localVarRequestOptions,
683
- };
684
- }),
685
729
  /**
686
730
  *
687
731
  * @summary 根据时间区间查询
@@ -858,13 +902,61 @@ const SettingApiAxiosParamCreator = function (configuration) {
858
902
  }),
859
903
  /**
860
904
  *
861
- * @summary 导入模板
862
- * @param {string} [language]
905
+ * @summary 新增或修改
906
+ * @param {number} parkId
907
+ * @param {WorkOrderTypeEnum} workOrderType
908
+ * @param {Array<WorkOrderDeptSettingsAddOrUpdateVO>} workOrderDeptSettingsAddOrUpdateVO
909
+ * @param {*} [options] Override http request option.
910
+ * @throws {RequiredError}
911
+ */
912
+ 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 = {}) {
913
+ // verify required parameter 'parkId' is not null or undefined
914
+ (0, common_1.assertParamExists)('workOrderDeptSettingsAddOrUpdate', 'parkId', parkId);
915
+ // verify required parameter 'workOrderType' is not null or undefined
916
+ (0, common_1.assertParamExists)('workOrderDeptSettingsAddOrUpdate', 'workOrderType', workOrderType);
917
+ // verify required parameter 'workOrderDeptSettingsAddOrUpdateVO' is not null or undefined
918
+ (0, common_1.assertParamExists)('workOrderDeptSettingsAddOrUpdate', 'workOrderDeptSettingsAddOrUpdateVO', workOrderDeptSettingsAddOrUpdateVO);
919
+ const localVarPath = `/gizone/workOrderDeptSettings/{parkId}/{workOrderType}`
920
+ .replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)))
921
+ .replace(`{${"workOrderType"}}`, encodeURIComponent(String(workOrderType)));
922
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
923
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
924
+ let baseOptions;
925
+ if (configuration) {
926
+ baseOptions = configuration.baseOptions;
927
+ }
928
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
929
+ const localVarHeaderParameter = {};
930
+ const localVarQueryParameter = {};
931
+ // authentication tokenScheme required
932
+ // http bearer authentication required
933
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
934
+ localVarHeaderParameter['Content-Type'] = 'application/json';
935
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
936
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
937
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
938
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(workOrderDeptSettingsAddOrUpdateVO, localVarRequestOptions, configuration);
939
+ return {
940
+ url: (0, common_1.toPathString)(localVarUrlObj),
941
+ options: localVarRequestOptions,
942
+ };
943
+ }),
944
+ /**
945
+ *
946
+ * @summary 根据工单类型查询
947
+ * @param {number} parkId
948
+ * @param {WorkOrderTypeEnum} workOrderType
863
949
  * @param {*} [options] Override http request option.
864
950
  * @throws {RequiredError}
865
951
  */
866
- uploadAdd4: (language_1, ...args_1) => __awaiter(this, [language_1, ...args_1], void 0, function* (language, options = {}) {
867
- const localVarPath = `/calendar/uploadAdd`;
952
+ workOrderDeptSettingsSelectByWorkOrderType: (parkId_1, workOrderType_1, ...args_1) => __awaiter(this, [parkId_1, workOrderType_1, ...args_1], void 0, function* (parkId, workOrderType, options = {}) {
953
+ // verify required parameter 'parkId' is not null or undefined
954
+ (0, common_1.assertParamExists)('workOrderDeptSettingsSelectByWorkOrderType', 'parkId', parkId);
955
+ // verify required parameter 'workOrderType' is not null or undefined
956
+ (0, common_1.assertParamExists)('workOrderDeptSettingsSelectByWorkOrderType', 'workOrderType', workOrderType);
957
+ const localVarPath = `/gizone/workOrderDeptSettings/{parkId}/{workOrderType}`
958
+ .replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)))
959
+ .replace(`{${"workOrderType"}}`, encodeURIComponent(String(workOrderType)));
868
960
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
869
961
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
870
962
  let baseOptions;
@@ -877,9 +969,46 @@ const SettingApiAxiosParamCreator = function (configuration) {
877
969
  // authentication tokenScheme required
878
970
  // http bearer authentication required
879
971
  yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
880
- if (language !== undefined) {
881
- localVarQueryParameter['language'] = language;
972
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
973
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
974
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
975
+ return {
976
+ url: (0, common_1.toPathString)(localVarUrlObj),
977
+ options: localVarRequestOptions,
978
+ };
979
+ }),
980
+ /**
981
+ *
982
+ * @summary 根据工单类型和key查询
983
+ * @param {number} parkId
984
+ * @param {WorkOrderTypeEnum} workOrderType
985
+ * @param {string} key
986
+ * @param {*} [options] Override http request option.
987
+ * @throws {RequiredError}
988
+ */
989
+ 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 = {}) {
990
+ // verify required parameter 'parkId' is not null or undefined
991
+ (0, common_1.assertParamExists)('workOrderDeptSettingsSelectByWorkOrderTypeAndKey', 'parkId', parkId);
992
+ // verify required parameter 'workOrderType' is not null or undefined
993
+ (0, common_1.assertParamExists)('workOrderDeptSettingsSelectByWorkOrderTypeAndKey', 'workOrderType', workOrderType);
994
+ // verify required parameter 'key' is not null or undefined
995
+ (0, common_1.assertParamExists)('workOrderDeptSettingsSelectByWorkOrderTypeAndKey', 'key', key);
996
+ const localVarPath = `/gizone/workOrderDeptSettings/{parkId}/{workOrderType}/{key}`
997
+ .replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)))
998
+ .replace(`{${"workOrderType"}}`, encodeURIComponent(String(workOrderType)))
999
+ .replace(`{${"key"}}`, encodeURIComponent(String(key)));
1000
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1001
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1002
+ let baseOptions;
1003
+ if (configuration) {
1004
+ baseOptions = configuration.baseOptions;
882
1005
  }
1006
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
1007
+ const localVarHeaderParameter = {};
1008
+ const localVarQueryParameter = {};
1009
+ // authentication tokenScheme required
1010
+ // http bearer authentication required
1011
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
883
1012
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
884
1013
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
885
1014
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -1129,36 +1258,65 @@ const SettingApiFp = function (configuration) {
1129
1258
  },
1130
1259
  /**
1131
1260
  *
1132
- * @summary 添加园区设置
1133
- * @param {number} deptId
1134
- * @param {string} configKey
1135
- * @param {object} body
1261
+ * @summary 导入-确认
1136
1262
  * @param {*} [options] Override http request option.
1137
1263
  * @throws {RequiredError}
1138
1264
  */
1139
- deptConfigAddOrUpdate(deptId, configKey, body, options) {
1265
+ calendarBatchImportConfirm(options) {
1140
1266
  return __awaiter(this, void 0, void 0, function* () {
1141
1267
  var _a, _b, _c;
1142
- const localVarAxiosArgs = yield localVarAxiosParamCreator.deptConfigAddOrUpdate(deptId, configKey, body, options);
1268
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.calendarBatchImportConfirm(options);
1143
1269
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1144
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.deptConfigAddOrUpdate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1270
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.calendarBatchImportConfirm']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1145
1271
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1146
1272
  });
1147
1273
  },
1148
1274
  /**
1149
1275
  *
1150
- * @summary 查询园区设置
1151
- * @param {number} deptId
1152
- * @param {string} configKey
1276
+ * @summary 导入-预览
1153
1277
  * @param {*} [options] Override http request option.
1154
1278
  * @throws {RequiredError}
1155
1279
  */
1156
- deptConfigSelectByParkAndKey(deptId, configKey, options) {
1280
+ calendarBatchImportPreView(options) {
1157
1281
  return __awaiter(this, void 0, void 0, function* () {
1158
1282
  var _a, _b, _c;
1159
- const localVarAxiosArgs = yield localVarAxiosParamCreator.deptConfigSelectByParkAndKey(deptId, configKey, options);
1283
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.calendarBatchImportPreView(options);
1160
1284
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1161
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.deptConfigSelectByParkAndKey']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1285
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.calendarBatchImportPreView']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1286
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1287
+ });
1288
+ },
1289
+ /**
1290
+ *
1291
+ * @summary 导入-下载模板
1292
+ * @param {string} [language]
1293
+ * @param {*} [options] Override http request option.
1294
+ * @throws {RequiredError}
1295
+ */
1296
+ calendarBatchImportTemplate(language, options) {
1297
+ return __awaiter(this, void 0, void 0, function* () {
1298
+ var _a, _b, _c;
1299
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.calendarBatchImportTemplate(language, options);
1300
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1301
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.calendarBatchImportTemplate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1302
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1303
+ });
1304
+ },
1305
+ /**
1306
+ *
1307
+ * @summary 导入-上传文件
1308
+ * @param {number} parkId 园区id
1309
+ * @param {File} file
1310
+ * @param {string} [language] 语言
1311
+ * @param {*} [options] Override http request option.
1312
+ * @throws {RequiredError}
1313
+ */
1314
+ calendarBatchImportUpload(parkId, file, language, options) {
1315
+ return __awaiter(this, void 0, void 0, function* () {
1316
+ var _a, _b, _c;
1317
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.calendarBatchImportUpload(parkId, file, language, options);
1318
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1319
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.calendarBatchImportUpload']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1162
1320
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1163
1321
  });
1164
1322
  },
@@ -1170,42 +1328,47 @@ const SettingApiFp = function (configuration) {
1170
1328
  * @param {*} [options] Override http request option.
1171
1329
  * @throws {RequiredError}
1172
1330
  */
1173
- exportList2(year, language, options) {
1331
+ calendarExport(year, language, options) {
1174
1332
  return __awaiter(this, void 0, void 0, function* () {
1175
1333
  var _a, _b, _c;
1176
- const localVarAxiosArgs = yield localVarAxiosParamCreator.exportList2(year, language, options);
1334
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.calendarExport(year, language, options);
1177
1335
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1178
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.exportList2']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1336
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.calendarExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1179
1337
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1180
1338
  });
1181
1339
  },
1182
1340
  /**
1183
1341
  *
1184
- * @summary 导入-入库
1342
+ * @summary 添加园区设置
1343
+ * @param {number} deptId
1344
+ * @param {string} configKey
1345
+ * @param {object} body
1185
1346
  * @param {*} [options] Override http request option.
1186
1347
  * @throws {RequiredError}
1187
1348
  */
1188
- exportMysql1(options) {
1349
+ deptConfigAddOrUpdate(deptId, configKey, body, options) {
1189
1350
  return __awaiter(this, void 0, void 0, function* () {
1190
1351
  var _a, _b, _c;
1191
- const localVarAxiosArgs = yield localVarAxiosParamCreator.exportMysql1(options);
1352
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.deptConfigAddOrUpdate(deptId, configKey, body, options);
1192
1353
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1193
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.exportMysql1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1354
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.deptConfigAddOrUpdate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1194
1355
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1195
1356
  });
1196
1357
  },
1197
1358
  /**
1198
1359
  *
1199
- * @summary 导入结果确认
1360
+ * @summary 查询园区设置
1361
+ * @param {number} deptId
1362
+ * @param {string} configKey
1200
1363
  * @param {*} [options] Override http request option.
1201
1364
  * @throws {RequiredError}
1202
1365
  */
1203
- exportRedisList1(options) {
1366
+ deptConfigSelectByParkAndKey(deptId, configKey, options) {
1204
1367
  return __awaiter(this, void 0, void 0, function* () {
1205
1368
  var _a, _b, _c;
1206
- const localVarAxiosArgs = yield localVarAxiosParamCreator.exportRedisList1(options);
1369
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.deptConfigSelectByParkAndKey(deptId, configKey, options);
1207
1370
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1208
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.exportRedisList1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1371
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.deptConfigSelectByParkAndKey']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1209
1372
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1210
1373
  });
1211
1374
  },
@@ -1257,23 +1420,6 @@ const SettingApiFp = function (configuration) {
1257
1420
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1258
1421
  });
1259
1422
  },
1260
- /**
1261
- *
1262
- * @summary 导入redis
1263
- * @param {string} [language]
1264
- * @param {SaveWaterMeterBatchRequest} [saveWaterMeterBatchRequest]
1265
- * @param {*} [options] Override http request option.
1266
- * @throws {RequiredError}
1267
- */
1268
- saveBatchExport1(language, saveWaterMeterBatchRequest, options) {
1269
- return __awaiter(this, void 0, void 0, function* () {
1270
- var _a, _b, _c;
1271
- const localVarAxiosArgs = yield localVarAxiosParamCreator.saveBatchExport1(language, saveWaterMeterBatchRequest, options);
1272
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1273
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.saveBatchExport1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1274
- return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1275
- });
1276
- },
1277
1423
  /**
1278
1424
  *
1279
1425
  * @summary 根据时间区间查询
@@ -1358,17 +1504,54 @@ const SettingApiFp = function (configuration) {
1358
1504
  },
1359
1505
  /**
1360
1506
  *
1361
- * @summary 导入模板
1362
- * @param {string} [language]
1507
+ * @summary 新增或修改
1508
+ * @param {number} parkId
1509
+ * @param {WorkOrderTypeEnum} workOrderType
1510
+ * @param {Array<WorkOrderDeptSettingsAddOrUpdateVO>} workOrderDeptSettingsAddOrUpdateVO
1511
+ * @param {*} [options] Override http request option.
1512
+ * @throws {RequiredError}
1513
+ */
1514
+ workOrderDeptSettingsAddOrUpdate(parkId, workOrderType, workOrderDeptSettingsAddOrUpdateVO, options) {
1515
+ return __awaiter(this, void 0, void 0, function* () {
1516
+ var _a, _b, _c;
1517
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.workOrderDeptSettingsAddOrUpdate(parkId, workOrderType, workOrderDeptSettingsAddOrUpdateVO, options);
1518
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1519
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.workOrderDeptSettingsAddOrUpdate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1520
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1521
+ });
1522
+ },
1523
+ /**
1524
+ *
1525
+ * @summary 根据工单类型查询
1526
+ * @param {number} parkId
1527
+ * @param {WorkOrderTypeEnum} workOrderType
1528
+ * @param {*} [options] Override http request option.
1529
+ * @throws {RequiredError}
1530
+ */
1531
+ workOrderDeptSettingsSelectByWorkOrderType(parkId, workOrderType, options) {
1532
+ return __awaiter(this, void 0, void 0, function* () {
1533
+ var _a, _b, _c;
1534
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.workOrderDeptSettingsSelectByWorkOrderType(parkId, workOrderType, options);
1535
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1536
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.workOrderDeptSettingsSelectByWorkOrderType']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1537
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1538
+ });
1539
+ },
1540
+ /**
1541
+ *
1542
+ * @summary 根据工单类型和key查询
1543
+ * @param {number} parkId
1544
+ * @param {WorkOrderTypeEnum} workOrderType
1545
+ * @param {string} key
1363
1546
  * @param {*} [options] Override http request option.
1364
1547
  * @throws {RequiredError}
1365
1548
  */
1366
- uploadAdd4(language, options) {
1549
+ workOrderDeptSettingsSelectByWorkOrderTypeAndKey(parkId, workOrderType, key, options) {
1367
1550
  return __awaiter(this, void 0, void 0, function* () {
1368
1551
  var _a, _b, _c;
1369
- const localVarAxiosArgs = yield localVarAxiosParamCreator.uploadAdd4(language, options);
1552
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.workOrderDeptSettingsSelectByWorkOrderTypeAndKey(parkId, workOrderType, key, options);
1370
1553
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1371
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.uploadAdd4']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1554
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SettingApi.workOrderDeptSettingsSelectByWorkOrderTypeAndKey']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1372
1555
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1373
1556
  });
1374
1557
  },
@@ -1516,51 +1699,71 @@ const SettingApiFactory = function (configuration, basePath, axios) {
1516
1699
  },
1517
1700
  /**
1518
1701
  *
1519
- * @summary 添加园区设置
1520
- * @param {SettingApiDeptConfigAddOrUpdateRequest} requestParameters Request parameters.
1702
+ * @summary 导入-确认
1521
1703
  * @param {*} [options] Override http request option.
1522
1704
  * @throws {RequiredError}
1523
1705
  */
1524
- deptConfigAddOrUpdate(requestParameters, options) {
1525
- return localVarFp.deptConfigAddOrUpdate(requestParameters.deptId, requestParameters.configKey, requestParameters.body, options).then((request) => request(axios, basePath));
1706
+ calendarBatchImportConfirm(options) {
1707
+ return localVarFp.calendarBatchImportConfirm(options).then((request) => request(axios, basePath));
1526
1708
  },
1527
1709
  /**
1528
1710
  *
1529
- * @summary 查询园区设置
1530
- * @param {SettingApiDeptConfigSelectByParkAndKeyRequest} requestParameters Request parameters.
1711
+ * @summary 导入-预览
1531
1712
  * @param {*} [options] Override http request option.
1532
1713
  * @throws {RequiredError}
1533
1714
  */
1534
- deptConfigSelectByParkAndKey(requestParameters, options) {
1535
- return localVarFp.deptConfigSelectByParkAndKey(requestParameters.deptId, requestParameters.configKey, options).then((request) => request(axios, basePath));
1715
+ calendarBatchImportPreView(options) {
1716
+ return localVarFp.calendarBatchImportPreView(options).then((request) => request(axios, basePath));
1717
+ },
1718
+ /**
1719
+ *
1720
+ * @summary 导入-下载模板
1721
+ * @param {SettingApiCalendarBatchImportTemplateRequest} requestParameters Request parameters.
1722
+ * @param {*} [options] Override http request option.
1723
+ * @throws {RequiredError}
1724
+ */
1725
+ calendarBatchImportTemplate(requestParameters = {}, options) {
1726
+ return localVarFp.calendarBatchImportTemplate(requestParameters.language, options).then((request) => request(axios, basePath));
1727
+ },
1728
+ /**
1729
+ *
1730
+ * @summary 导入-上传文件
1731
+ * @param {SettingApiCalendarBatchImportUploadRequest} requestParameters Request parameters.
1732
+ * @param {*} [options] Override http request option.
1733
+ * @throws {RequiredError}
1734
+ */
1735
+ calendarBatchImportUpload(requestParameters, options) {
1736
+ return localVarFp.calendarBatchImportUpload(requestParameters.parkId, requestParameters.file, requestParameters.language, options).then((request) => request(axios, basePath));
1536
1737
  },
1537
1738
  /**
1538
1739
  *
1539
1740
  * @summary 导出
1540
- * @param {SettingApiExportList2Request} requestParameters Request parameters.
1741
+ * @param {SettingApiCalendarExportRequest} requestParameters Request parameters.
1541
1742
  * @param {*} [options] Override http request option.
1542
1743
  * @throws {RequiredError}
1543
1744
  */
1544
- exportList2(requestParameters, options) {
1545
- return localVarFp.exportList2(requestParameters.year, requestParameters.language, options).then((request) => request(axios, basePath));
1745
+ calendarExport(requestParameters, options) {
1746
+ return localVarFp.calendarExport(requestParameters.year, requestParameters.language, options).then((request) => request(axios, basePath));
1546
1747
  },
1547
1748
  /**
1548
1749
  *
1549
- * @summary 导入-入库
1750
+ * @summary 添加园区设置
1751
+ * @param {SettingApiDeptConfigAddOrUpdateRequest} requestParameters Request parameters.
1550
1752
  * @param {*} [options] Override http request option.
1551
1753
  * @throws {RequiredError}
1552
1754
  */
1553
- exportMysql1(options) {
1554
- return localVarFp.exportMysql1(options).then((request) => request(axios, basePath));
1755
+ deptConfigAddOrUpdate(requestParameters, options) {
1756
+ return localVarFp.deptConfigAddOrUpdate(requestParameters.deptId, requestParameters.configKey, requestParameters.body, options).then((request) => request(axios, basePath));
1555
1757
  },
1556
1758
  /**
1557
1759
  *
1558
- * @summary 导入结果确认
1760
+ * @summary 查询园区设置
1761
+ * @param {SettingApiDeptConfigSelectByParkAndKeyRequest} requestParameters Request parameters.
1559
1762
  * @param {*} [options] Override http request option.
1560
1763
  * @throws {RequiredError}
1561
1764
  */
1562
- exportRedisList1(options) {
1563
- return localVarFp.exportRedisList1(options).then((request) => request(axios, basePath));
1765
+ deptConfigSelectByParkAndKey(requestParameters, options) {
1766
+ return localVarFp.deptConfigSelectByParkAndKey(requestParameters.deptId, requestParameters.configKey, options).then((request) => request(axios, basePath));
1564
1767
  },
1565
1768
  /**
1566
1769
  *
@@ -1592,16 +1795,6 @@ const SettingApiFactory = function (configuration, basePath, axios) {
1592
1795
  getByDate(requestParameters, options) {
1593
1796
  return localVarFp.getByDate(requestParameters.date, options).then((request) => request(axios, basePath));
1594
1797
  },
1595
- /**
1596
- *
1597
- * @summary 导入redis
1598
- * @param {SettingApiSaveBatchExport1Request} requestParameters Request parameters.
1599
- * @param {*} [options] Override http request option.
1600
- * @throws {RequiredError}
1601
- */
1602
- saveBatchExport1(requestParameters = {}, options) {
1603
- return localVarFp.saveBatchExport1(requestParameters.language, requestParameters.saveWaterMeterBatchRequest, options).then((request) => request(axios, basePath));
1604
- },
1605
1798
  /**
1606
1799
  *
1607
1800
  * @summary 根据时间区间查询
@@ -1654,13 +1847,33 @@ const SettingApiFactory = function (configuration, basePath, axios) {
1654
1847
  },
1655
1848
  /**
1656
1849
  *
1657
- * @summary 导入模板
1658
- * @param {SettingApiUploadAdd4Request} requestParameters Request parameters.
1850
+ * @summary 新增或修改
1851
+ * @param {SettingApiWorkOrderDeptSettingsAddOrUpdateRequest} requestParameters Request parameters.
1852
+ * @param {*} [options] Override http request option.
1853
+ * @throws {RequiredError}
1854
+ */
1855
+ workOrderDeptSettingsAddOrUpdate(requestParameters, options) {
1856
+ return localVarFp.workOrderDeptSettingsAddOrUpdate(requestParameters.parkId, requestParameters.workOrderType, requestParameters.workOrderDeptSettingsAddOrUpdateVO, options).then((request) => request(axios, basePath));
1857
+ },
1858
+ /**
1859
+ *
1860
+ * @summary 根据工单类型查询
1861
+ * @param {SettingApiWorkOrderDeptSettingsSelectByWorkOrderTypeRequest} requestParameters Request parameters.
1862
+ * @param {*} [options] Override http request option.
1863
+ * @throws {RequiredError}
1864
+ */
1865
+ workOrderDeptSettingsSelectByWorkOrderType(requestParameters, options) {
1866
+ return localVarFp.workOrderDeptSettingsSelectByWorkOrderType(requestParameters.parkId, requestParameters.workOrderType, options).then((request) => request(axios, basePath));
1867
+ },
1868
+ /**
1869
+ *
1870
+ * @summary 根据工单类型和key查询
1871
+ * @param {SettingApiWorkOrderDeptSettingsSelectByWorkOrderTypeAndKeyRequest} requestParameters Request parameters.
1659
1872
  * @param {*} [options] Override http request option.
1660
1873
  * @throws {RequiredError}
1661
1874
  */
1662
- uploadAdd4(requestParameters = {}, options) {
1663
- return localVarFp.uploadAdd4(requestParameters.language, options).then((request) => request(axios, basePath));
1875
+ workOrderDeptSettingsSelectByWorkOrderTypeAndKey(requestParameters, options) {
1876
+ return localVarFp.workOrderDeptSettingsSelectByWorkOrderTypeAndKey(requestParameters.parkId, requestParameters.workOrderType, requestParameters.key, options).then((request) => request(axios, basePath));
1664
1877
  },
1665
1878
  /**
1666
1879
  *
@@ -1804,56 +2017,78 @@ class SettingApi extends base_1.BaseAPI {
1804
2017
  }
1805
2018
  /**
1806
2019
  *
1807
- * @summary 添加园区设置
1808
- * @param {SettingApiDeptConfigAddOrUpdateRequest} requestParameters Request parameters.
2020
+ * @summary 导入-确认
1809
2021
  * @param {*} [options] Override http request option.
1810
2022
  * @throws {RequiredError}
1811
2023
  * @memberof SettingApi
1812
2024
  */
1813
- deptConfigAddOrUpdate(requestParameters, options) {
1814
- return (0, exports.SettingApiFp)(this.configuration).deptConfigAddOrUpdate(requestParameters.deptId, requestParameters.configKey, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
2025
+ calendarBatchImportConfirm(options) {
2026
+ return (0, exports.SettingApiFp)(this.configuration).calendarBatchImportConfirm(options).then((request) => request(this.axios, this.basePath));
1815
2027
  }
1816
2028
  /**
1817
2029
  *
1818
- * @summary 查询园区设置
1819
- * @param {SettingApiDeptConfigSelectByParkAndKeyRequest} requestParameters Request parameters.
2030
+ * @summary 导入-预览
1820
2031
  * @param {*} [options] Override http request option.
1821
2032
  * @throws {RequiredError}
1822
2033
  * @memberof SettingApi
1823
2034
  */
1824
- deptConfigSelectByParkAndKey(requestParameters, options) {
1825
- return (0, exports.SettingApiFp)(this.configuration).deptConfigSelectByParkAndKey(requestParameters.deptId, requestParameters.configKey, options).then((request) => request(this.axios, this.basePath));
2035
+ calendarBatchImportPreView(options) {
2036
+ return (0, exports.SettingApiFp)(this.configuration).calendarBatchImportPreView(options).then((request) => request(this.axios, this.basePath));
2037
+ }
2038
+ /**
2039
+ *
2040
+ * @summary 导入-下载模板
2041
+ * @param {SettingApiCalendarBatchImportTemplateRequest} requestParameters Request parameters.
2042
+ * @param {*} [options] Override http request option.
2043
+ * @throws {RequiredError}
2044
+ * @memberof SettingApi
2045
+ */
2046
+ calendarBatchImportTemplate(requestParameters = {}, options) {
2047
+ return (0, exports.SettingApiFp)(this.configuration).calendarBatchImportTemplate(requestParameters.language, options).then((request) => request(this.axios, this.basePath));
2048
+ }
2049
+ /**
2050
+ *
2051
+ * @summary 导入-上传文件
2052
+ * @param {SettingApiCalendarBatchImportUploadRequest} requestParameters Request parameters.
2053
+ * @param {*} [options] Override http request option.
2054
+ * @throws {RequiredError}
2055
+ * @memberof SettingApi
2056
+ */
2057
+ calendarBatchImportUpload(requestParameters, options) {
2058
+ return (0, exports.SettingApiFp)(this.configuration).calendarBatchImportUpload(requestParameters.parkId, requestParameters.file, requestParameters.language, options).then((request) => request(this.axios, this.basePath));
1826
2059
  }
1827
2060
  /**
1828
2061
  *
1829
2062
  * @summary 导出
1830
- * @param {SettingApiExportList2Request} requestParameters Request parameters.
2063
+ * @param {SettingApiCalendarExportRequest} requestParameters Request parameters.
1831
2064
  * @param {*} [options] Override http request option.
1832
2065
  * @throws {RequiredError}
1833
2066
  * @memberof SettingApi
1834
2067
  */
1835
- exportList2(requestParameters, options) {
1836
- return (0, exports.SettingApiFp)(this.configuration).exportList2(requestParameters.year, requestParameters.language, options).then((request) => request(this.axios, this.basePath));
2068
+ calendarExport(requestParameters, options) {
2069
+ return (0, exports.SettingApiFp)(this.configuration).calendarExport(requestParameters.year, requestParameters.language, options).then((request) => request(this.axios, this.basePath));
1837
2070
  }
1838
2071
  /**
1839
2072
  *
1840
- * @summary 导入-入库
2073
+ * @summary 添加园区设置
2074
+ * @param {SettingApiDeptConfigAddOrUpdateRequest} requestParameters Request parameters.
1841
2075
  * @param {*} [options] Override http request option.
1842
2076
  * @throws {RequiredError}
1843
2077
  * @memberof SettingApi
1844
2078
  */
1845
- exportMysql1(options) {
1846
- return (0, exports.SettingApiFp)(this.configuration).exportMysql1(options).then((request) => request(this.axios, this.basePath));
2079
+ deptConfigAddOrUpdate(requestParameters, options) {
2080
+ return (0, exports.SettingApiFp)(this.configuration).deptConfigAddOrUpdate(requestParameters.deptId, requestParameters.configKey, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
1847
2081
  }
1848
2082
  /**
1849
2083
  *
1850
- * @summary 导入结果确认
2084
+ * @summary 查询园区设置
2085
+ * @param {SettingApiDeptConfigSelectByParkAndKeyRequest} requestParameters Request parameters.
1851
2086
  * @param {*} [options] Override http request option.
1852
2087
  * @throws {RequiredError}
1853
2088
  * @memberof SettingApi
1854
2089
  */
1855
- exportRedisList1(options) {
1856
- return (0, exports.SettingApiFp)(this.configuration).exportRedisList1(options).then((request) => request(this.axios, this.basePath));
2090
+ deptConfigSelectByParkAndKey(requestParameters, options) {
2091
+ return (0, exports.SettingApiFp)(this.configuration).deptConfigSelectByParkAndKey(requestParameters.deptId, requestParameters.configKey, options).then((request) => request(this.axios, this.basePath));
1857
2092
  }
1858
2093
  /**
1859
2094
  *
@@ -1888,17 +2123,6 @@ class SettingApi extends base_1.BaseAPI {
1888
2123
  getByDate(requestParameters, options) {
1889
2124
  return (0, exports.SettingApiFp)(this.configuration).getByDate(requestParameters.date, options).then((request) => request(this.axios, this.basePath));
1890
2125
  }
1891
- /**
1892
- *
1893
- * @summary 导入redis
1894
- * @param {SettingApiSaveBatchExport1Request} requestParameters Request parameters.
1895
- * @param {*} [options] Override http request option.
1896
- * @throws {RequiredError}
1897
- * @memberof SettingApi
1898
- */
1899
- saveBatchExport1(requestParameters = {}, options) {
1900
- return (0, exports.SettingApiFp)(this.configuration).saveBatchExport1(requestParameters.language, requestParameters.saveWaterMeterBatchRequest, options).then((request) => request(this.axios, this.basePath));
1901
- }
1902
2126
  /**
1903
2127
  *
1904
2128
  * @summary 根据时间区间查询
@@ -1956,14 +2180,36 @@ class SettingApi extends base_1.BaseAPI {
1956
2180
  }
1957
2181
  /**
1958
2182
  *
1959
- * @summary 导入模板
1960
- * @param {SettingApiUploadAdd4Request} requestParameters Request parameters.
2183
+ * @summary 新增或修改
2184
+ * @param {SettingApiWorkOrderDeptSettingsAddOrUpdateRequest} requestParameters Request parameters.
2185
+ * @param {*} [options] Override http request option.
2186
+ * @throws {RequiredError}
2187
+ * @memberof SettingApi
2188
+ */
2189
+ workOrderDeptSettingsAddOrUpdate(requestParameters, options) {
2190
+ return (0, exports.SettingApiFp)(this.configuration).workOrderDeptSettingsAddOrUpdate(requestParameters.parkId, requestParameters.workOrderType, requestParameters.workOrderDeptSettingsAddOrUpdateVO, options).then((request) => request(this.axios, this.basePath));
2191
+ }
2192
+ /**
2193
+ *
2194
+ * @summary 根据工单类型查询
2195
+ * @param {SettingApiWorkOrderDeptSettingsSelectByWorkOrderTypeRequest} requestParameters Request parameters.
2196
+ * @param {*} [options] Override http request option.
2197
+ * @throws {RequiredError}
2198
+ * @memberof SettingApi
2199
+ */
2200
+ workOrderDeptSettingsSelectByWorkOrderType(requestParameters, options) {
2201
+ return (0, exports.SettingApiFp)(this.configuration).workOrderDeptSettingsSelectByWorkOrderType(requestParameters.parkId, requestParameters.workOrderType, options).then((request) => request(this.axios, this.basePath));
2202
+ }
2203
+ /**
2204
+ *
2205
+ * @summary 根据工单类型和key查询
2206
+ * @param {SettingApiWorkOrderDeptSettingsSelectByWorkOrderTypeAndKeyRequest} requestParameters Request parameters.
1961
2207
  * @param {*} [options] Override http request option.
1962
2208
  * @throws {RequiredError}
1963
2209
  * @memberof SettingApi
1964
2210
  */
1965
- uploadAdd4(requestParameters = {}, options) {
1966
- return (0, exports.SettingApiFp)(this.configuration).uploadAdd4(requestParameters.language, options).then((request) => request(this.axios, this.basePath));
2211
+ workOrderDeptSettingsSelectByWorkOrderTypeAndKey(requestParameters, options) {
2212
+ return (0, exports.SettingApiFp)(this.configuration).workOrderDeptSettingsSelectByWorkOrderTypeAndKey(requestParameters.parkId, requestParameters.workOrderType, requestParameters.key, options).then((request) => request(this.axios, this.basePath));
1967
2213
  }
1968
2214
  /**
1969
2215
  *