@gizone/rrs-client 3.11.12-alpha.9 → 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 (360) 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-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/json-result-excel-import-result-dtocalendar-export-dto.d.ts +56 -0
  103. package/dist/esm/models/json-result-excel-import-result-dtoinspection-standard-import-dto.d.ts +56 -0
  104. package/dist/esm/models/json-result-excel-import-result-dtomaintenance-standard-import-dto.d.ts +56 -0
  105. package/dist/esm/models/{json-result-page-dto-inspection-standard-entity.d.ts → json-result-list-inspection-standard-entity.d.ts} +12 -12
  106. package/dist/esm/models/json-result-list-work-order-dept-settings-entity.d.ts +56 -0
  107. package/dist/esm/models/json-result-page-dto-inspection-standard-dto.d.ts +56 -0
  108. 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
  109. package/dist/esm/models/json-result-page-dto-sys-user-msg-dto.js +14 -0
  110. package/dist/esm/models/{json-result-sys-user-msg-do.d.ts → json-result-park-info-dto.d.ts} +11 -11
  111. package/dist/esm/models/json-result-park-info-dto.js +14 -0
  112. package/dist/esm/models/{json-result-calendar-add-redis-list-vo.d.ts → json-result-sys-user-msg-dto.d.ts} +11 -11
  113. package/dist/esm/models/json-result-sys-user-msg-dto.js +14 -0
  114. 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
  115. package/dist/esm/models/json-result-work-order-dept-settings-entity.js +14 -0
  116. package/dist/esm/models/maintenance-standard-import-dto.d.ts +114 -0
  117. package/dist/esm/models/maintenance-standard-import-dto.js +14 -0
  118. package/dist/{models/page-dto-inspection-standard-entity.d.ts → esm/models/page-dto-inspection-standard-dto.d.ts} +7 -7
  119. package/dist/esm/models/page-dto-inspection-standard-dto.js +14 -0
  120. package/dist/esm/models/{page-dto-sys-user-msg-list-dto.d.ts → page-dto-sys-user-msg-dto.d.ts} +7 -7
  121. package/dist/esm/models/page-dto-sys-user-msg-dto.js +14 -0
  122. package/dist/esm/models/park-center-attribute-enum.d.ts +21 -0
  123. package/dist/esm/models/park-center-attribute-enum.js +22 -0
  124. package/dist/esm/models/park-info-dto.d.ts +85 -0
  125. package/dist/esm/models/park-info-dto.js +14 -0
  126. package/dist/esm/models/park-info-edit-vo.d.ts +37 -0
  127. package/dist/esm/models/park-info-edit-vo.js +14 -0
  128. package/dist/esm/models/park-plat-form-enum.d.ts +23 -0
  129. package/dist/esm/models/park-plat-form-enum.js +24 -0
  130. package/dist/esm/models/period-detail-resp.d.ts +6 -0
  131. package/dist/esm/models/plan-add-vo.d.ts +1 -1
  132. package/dist/esm/models/plan-edit-vo.d.ts +1 -1
  133. package/dist/esm/models/plan-item-add-vo.d.ts +1 -1
  134. package/dist/esm/models/plan-item-edit-vo.d.ts +1 -1
  135. package/dist/esm/models/process-work-order-vo.d.ts +19 -0
  136. package/dist/esm/models/source-work-order-inspection-dto.d.ts +4 -3
  137. package/dist/esm/models/space-add-excel-dto.d.ts +6 -0
  138. package/dist/esm/models/sys-dept.d.ts +7 -1
  139. package/dist/esm/models/{sys-user-msg-list-dto.d.ts → sys-user-msg-dto.d.ts} +30 -28
  140. package/dist/esm/models/sys-user-msg-dto.js +14 -0
  141. package/dist/esm/models/system-user-msg-source-type-enum.d.ts +23 -0
  142. package/dist/esm/models/system-user-msg-source-type-enum.js +24 -0
  143. package/dist/esm/models/system-user-msg-type-enum.d.ts +21 -0
  144. package/dist/esm/models/system-user-msg-type-enum.js +22 -0
  145. package/dist/esm/models/work-order-add-vo.d.ts +24 -4
  146. package/dist/esm/models/work-order-circulation-vo.d.ts +8 -1
  147. package/dist/esm/models/work-order-dept-settings-add-or-update-vo.d.ts +36 -0
  148. package/dist/esm/models/work-order-dept-settings-add-or-update-vo.js +14 -0
  149. package/dist/esm/models/work-order-dept-settings-entity.d.ts +67 -0
  150. package/dist/esm/models/work-order-dept-settings-entity.js +14 -0
  151. package/dist/esm/models/work-order-detail-dto.d.ts +46 -0
  152. package/dist/esm/models/work-order-internal-status-enum.d.ts +23 -0
  153. package/dist/esm/models/work-order-internal-status-enum.js +24 -0
  154. package/dist/esm/models/work-order-issue-type-enum.d.ts +26 -0
  155. package/dist/esm/models/work-order-issue-type-enum.js +27 -0
  156. package/dist/esm/models/work-order-liability-party-enum.d.ts +21 -0
  157. package/dist/esm/models/work-order-liability-party-enum.js +22 -0
  158. package/dist/esm/models/work-order-push-settings-entity.d.ts +4 -17
  159. package/dist/esm/models/work-order-push-settings-entity.js +1 -13
  160. package/dist/esm/models/work-order-push-settings-save-or-update-vo.d.ts +4 -17
  161. package/dist/esm/models/work-order-push-settings-save-or-update-vo.js +1 -13
  162. package/dist/esm/models/work-order-report-vo.d.ts +31 -0
  163. package/dist/esm/models/work-order-report-vo.js +14 -0
  164. package/dist/esm/models/work-order-settings-type-enum.d.ts +30 -0
  165. package/dist/esm/models/work-order-settings-type-enum.js +31 -0
  166. package/dist/esm/models/work-order-staging-data-vo.d.ts +49 -0
  167. package/dist/esm/models/work-order-staging-data-vo.js +14 -0
  168. package/dist/esm/models/work-order-type-enum.d.ts +1 -1
  169. package/dist/esm/models/work-order-type-enum.js +1 -1
  170. package/dist/models/dept-relation-dto.d.ts +140 -0
  171. package/dist/models/dept-relation.d.ts +86 -0
  172. package/dist/models/equipment-detail-dto.d.ts +6 -0
  173. package/dist/models/equipment-edit-vo.d.ts +6 -0
  174. package/dist/models/equipment-excel-add-dto.d.ts +6 -0
  175. package/dist/models/equipment-search-system-dto.d.ts +12 -6
  176. package/dist/models/equipment-system-add-vo.d.ts +1 -1
  177. package/dist/models/{calendar-add-redis-list-vo.d.ts → excel-import-result-dtocalendar-export-dto.d.ts} +9 -21
  178. package/dist/models/excel-import-result-dtoinspection-standard-import-dto.d.ts +31 -0
  179. package/dist/models/excel-import-result-dtomaintenance-standard-import-dto.d.ts +31 -0
  180. package/dist/models/file-dto.d.ts +3 -3
  181. package/dist/models/get-user-wx200-response.d.ts +8 -8
  182. package/dist/models/index.d.ts +35 -13
  183. package/dist/models/index.js +35 -13
  184. package/dist/models/inspection-point-item.d.ts +12 -0
  185. package/dist/models/inspection-standard-add-or-update-vo.d.ts +3 -4
  186. package/dist/models/inspection-standard-dto.d.ts +147 -0
  187. package/dist/models/inspection-standard-entity.d.ts +13 -0
  188. package/dist/models/inspection-standard-import-dto.d.ts +114 -0
  189. package/dist/models/json-result-excel-import-result-dtocalendar-export-dto.d.ts +56 -0
  190. package/dist/models/json-result-excel-import-result-dtoinspection-standard-import-dto.d.ts +56 -0
  191. package/dist/models/json-result-excel-import-result-dtomaintenance-standard-import-dto.d.ts +56 -0
  192. package/dist/models/json-result-list-inspection-standard-entity.d.ts +56 -0
  193. package/dist/models/json-result-list-work-order-dept-settings-entity.d.ts +56 -0
  194. package/dist/models/json-result-page-dto-inspection-standard-dto.d.ts +56 -0
  195. package/dist/models/json-result-page-dto-sys-user-msg-dto.d.ts +56 -0
  196. package/dist/models/json-result-page-dto-sys-user-msg-dto.js +15 -0
  197. package/dist/models/{json-result-sys-user-msg-do.d.ts → json-result-park-info-dto.d.ts} +11 -11
  198. package/dist/models/json-result-park-info-dto.js +15 -0
  199. package/dist/models/json-result-sys-user-msg-dto.d.ts +56 -0
  200. package/dist/models/json-result-sys-user-msg-dto.js +15 -0
  201. 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
  202. package/dist/models/json-result-work-order-dept-settings-entity.js +15 -0
  203. package/dist/models/maintenance-standard-import-dto.d.ts +114 -0
  204. package/dist/models/maintenance-standard-import-dto.js +15 -0
  205. package/dist/{esm/models/page-dto-inspection-standard-entity.d.ts → models/page-dto-inspection-standard-dto.d.ts} +7 -7
  206. package/dist/models/page-dto-inspection-standard-dto.js +15 -0
  207. package/dist/models/{page-dto-sys-user-msg-list-dto.d.ts → page-dto-sys-user-msg-dto.d.ts} +7 -7
  208. package/dist/models/page-dto-sys-user-msg-dto.js +15 -0
  209. package/dist/models/park-center-attribute-enum.d.ts +21 -0
  210. package/dist/models/park-center-attribute-enum.js +25 -0
  211. package/dist/models/park-info-dto.d.ts +85 -0
  212. package/dist/models/park-info-dto.js +15 -0
  213. package/dist/models/park-info-edit-vo.d.ts +37 -0
  214. package/dist/models/park-info-edit-vo.js +15 -0
  215. package/dist/models/park-plat-form-enum.d.ts +23 -0
  216. package/dist/models/park-plat-form-enum.js +27 -0
  217. package/dist/models/period-detail-resp.d.ts +6 -0
  218. package/dist/models/plan-add-vo.d.ts +1 -1
  219. package/dist/models/plan-edit-vo.d.ts +1 -1
  220. package/dist/models/plan-item-add-vo.d.ts +1 -1
  221. package/dist/models/plan-item-edit-vo.d.ts +1 -1
  222. package/dist/models/process-work-order-vo.d.ts +19 -0
  223. package/dist/models/source-work-order-inspection-dto.d.ts +4 -3
  224. package/dist/models/space-add-excel-dto.d.ts +6 -0
  225. package/dist/models/sys-dept.d.ts +7 -1
  226. package/dist/models/{sys-user-msg-list-dto.d.ts → sys-user-msg-dto.d.ts} +30 -28
  227. package/dist/models/sys-user-msg-dto.js +15 -0
  228. package/dist/models/system-user-msg-source-type-enum.d.ts +23 -0
  229. package/dist/models/system-user-msg-source-type-enum.js +27 -0
  230. package/dist/models/system-user-msg-type-enum.d.ts +21 -0
  231. package/dist/models/system-user-msg-type-enum.js +25 -0
  232. package/dist/models/work-order-add-vo.d.ts +24 -4
  233. package/dist/models/work-order-circulation-vo.d.ts +8 -1
  234. package/dist/models/work-order-dept-settings-add-or-update-vo.d.ts +36 -0
  235. package/dist/models/work-order-dept-settings-add-or-update-vo.js +15 -0
  236. package/dist/models/work-order-dept-settings-entity.d.ts +67 -0
  237. package/dist/models/work-order-dept-settings-entity.js +15 -0
  238. package/dist/models/work-order-detail-dto.d.ts +46 -0
  239. package/dist/models/work-order-internal-status-enum.d.ts +23 -0
  240. package/dist/models/work-order-internal-status-enum.js +27 -0
  241. package/dist/models/work-order-issue-type-enum.d.ts +26 -0
  242. package/dist/models/work-order-issue-type-enum.js +30 -0
  243. package/dist/models/work-order-liability-party-enum.d.ts +21 -0
  244. package/dist/models/work-order-liability-party-enum.js +25 -0
  245. package/dist/models/work-order-push-settings-entity.d.ts +4 -17
  246. package/dist/models/work-order-push-settings-entity.js +0 -14
  247. package/dist/models/work-order-push-settings-save-or-update-vo.d.ts +4 -17
  248. package/dist/models/work-order-push-settings-save-or-update-vo.js +0 -14
  249. package/dist/models/work-order-report-vo.d.ts +31 -0
  250. package/dist/models/work-order-report-vo.js +15 -0
  251. package/dist/models/work-order-settings-type-enum.d.ts +30 -0
  252. package/dist/models/work-order-settings-type-enum.js +34 -0
  253. package/dist/models/work-order-staging-data-vo.d.ts +49 -0
  254. package/dist/models/work-order-staging-data-vo.js +15 -0
  255. package/dist/models/work-order-type-enum.d.ts +1 -1
  256. package/dist/models/work-order-type-enum.js +1 -1
  257. package/models/dept-relation-dto.ts +152 -0
  258. package/models/dept-relation.ts +98 -0
  259. package/models/equipment-detail-dto.ts +6 -0
  260. package/models/equipment-edit-vo.ts +6 -0
  261. package/models/equipment-excel-add-dto.ts +6 -0
  262. package/models/equipment-search-system-dto.ts +12 -6
  263. package/models/equipment-system-add-vo.ts +1 -1
  264. package/models/{calendar-add-redis-list-vo.ts → excel-import-result-dtocalendar-export-dto.ts} +9 -21
  265. package/models/excel-import-result-dtoinspection-standard-import-dto.ts +39 -0
  266. package/models/excel-import-result-dtomaintenance-standard-import-dto.ts +39 -0
  267. package/models/file-dto.ts +3 -3
  268. package/models/get-user-wx200-response.ts +8 -8
  269. package/models/index.ts +35 -13
  270. package/models/inspection-point-item.ts +12 -0
  271. package/models/inspection-standard-add-or-update-vo.ts +3 -6
  272. package/models/inspection-standard-dto.ts +161 -0
  273. package/models/inspection-standard-entity.ts +15 -0
  274. package/models/inspection-standard-import-dto.ts +120 -0
  275. package/models/json-result-excel-import-result-dtocalendar-export-dto.ts +66 -0
  276. package/models/json-result-excel-import-result-dtoinspection-standard-import-dto.ts +66 -0
  277. package/models/json-result-excel-import-result-dtomaintenance-standard-import-dto.ts +66 -0
  278. package/models/{json-result-page-dto-inspection-standard-entity.ts → json-result-list-inspection-standard-entity.ts} +12 -12
  279. package/models/json-result-list-work-order-dept-settings-entity.ts +66 -0
  280. package/models/json-result-page-dto-inspection-standard-dto.ts +66 -0
  281. package/models/{json-result-calendar-add-redis-list-vo.ts → json-result-page-dto-sys-user-msg-dto.ts} +11 -11
  282. package/models/{json-result-sys-user-msg-do.ts → json-result-park-info-dto.ts} +11 -11
  283. package/models/{json-result-page-dto-sys-user-msg-list-dto.ts → json-result-sys-user-msg-dto.ts} +11 -11
  284. package/models/{json-result-space-edit-before-and-after-dto.ts → json-result-work-order-dept-settings-entity.ts} +11 -11
  285. package/models/maintenance-standard-import-dto.ts +120 -0
  286. package/models/{page-dto-inspection-standard-entity.ts → page-dto-inspection-standard-dto.ts} +7 -7
  287. package/models/{page-dto-sys-user-msg-list-dto.ts → page-dto-sys-user-msg-dto.ts} +7 -7
  288. package/models/park-center-attribute-enum.ts +31 -0
  289. package/models/park-info-dto.ts +93 -0
  290. package/models/park-info-edit-vo.ts +45 -0
  291. package/models/park-plat-form-enum.ts +33 -0
  292. package/models/period-detail-resp.ts +6 -0
  293. package/models/plan-add-vo.ts +1 -1
  294. package/models/plan-edit-vo.ts +1 -1
  295. package/models/plan-item-add-vo.ts +1 -1
  296. package/models/plan-item-edit-vo.ts +1 -1
  297. package/models/process-work-order-vo.ts +23 -0
  298. package/models/source-work-order-inspection-dto.ts +8 -3
  299. package/models/space-add-excel-dto.ts +6 -0
  300. package/models/sys-dept.ts +7 -1
  301. package/models/{sys-user-msg-list-dto.ts → sys-user-msg-dto.ts} +36 -28
  302. package/models/system-user-msg-source-type-enum.ts +33 -0
  303. package/models/system-user-msg-type-enum.ts +31 -0
  304. package/models/work-order-add-vo.ts +28 -4
  305. package/models/work-order-circulation-vo.ts +12 -1
  306. package/models/work-order-dept-settings-add-or-update-vo.ts +42 -0
  307. package/models/work-order-dept-settings-entity.ts +77 -0
  308. package/models/work-order-detail-dto.ts +54 -0
  309. package/models/work-order-internal-status-enum.ts +33 -0
  310. package/models/work-order-issue-type-enum.ts +36 -0
  311. package/models/work-order-liability-party-enum.ts +31 -0
  312. package/models/work-order-push-settings-entity.ts +6 -18
  313. package/models/work-order-push-settings-save-or-update-vo.ts +6 -18
  314. package/models/{space-edit-before-and-after-dto.ts → work-order-report-vo.ts} +13 -11
  315. package/models/work-order-settings-type-enum.ts +40 -0
  316. package/models/work-order-staging-data-vo.ts +59 -0
  317. package/models/work-order-type-enum.ts +1 -1
  318. package/package.json +1 -1
  319. package/dist/apis/inspection-api.d.ts +0 -846
  320. package/dist/esm/apis/inspection-api.d.ts +0 -846
  321. package/dist/esm/models/space-edit-before-and-after-dto.d.ts +0 -31
  322. package/dist/esm/models/space-edit-excel-dto.d.ts +0 -78
  323. package/dist/esm/models/sys-user-msg-do.d.ts +0 -90
  324. package/dist/esm/models/sys-user-msg-search-list-vo.d.ts +0 -54
  325. package/dist/models/json-result-page-dto-inspection-standard-entity.d.ts +0 -56
  326. package/dist/models/json-result-page-dto-sys-user-msg-list-dto.d.ts +0 -56
  327. package/dist/models/json-result-space-edit-before-and-after-dto.d.ts +0 -56
  328. package/dist/models/space-edit-before-and-after-dto.d.ts +0 -31
  329. package/dist/models/space-edit-excel-dto.d.ts +0 -78
  330. package/dist/models/sys-user-msg-do.d.ts +0 -90
  331. package/dist/models/sys-user-msg-search-list-vo.d.ts +0 -54
  332. package/models/space-edit-excel-dto.ts +0 -84
  333. package/models/sys-user-msg-do.ts +0 -96
  334. package/models/sys-user-msg-search-list-vo.ts +0 -60
  335. /package/dist/esm/models/{calendar-add-redis-list-vo.js → dept-relation-dto.js} +0 -0
  336. /package/dist/esm/models/{json-result-calendar-add-redis-list-vo.js → dept-relation.js} +0 -0
  337. /package/dist/esm/models/{json-result-page-dto-inspection-standard-entity.js → excel-import-result-dtocalendar-export-dto.js} +0 -0
  338. /package/dist/esm/models/{json-result-page-dto-sys-user-msg-list-dto.js → excel-import-result-dtoinspection-standard-import-dto.js} +0 -0
  339. /package/dist/esm/models/{json-result-space-edit-before-and-after-dto.js → excel-import-result-dtomaintenance-standard-import-dto.js} +0 -0
  340. /package/dist/esm/models/{json-result-sys-user-msg-do.js → inspection-standard-dto.js} +0 -0
  341. /package/dist/esm/models/{page-dto-inspection-standard-entity.js → inspection-standard-import-dto.js} +0 -0
  342. /package/dist/esm/models/{page-dto-sys-user-msg-list-dto.js → json-result-excel-import-result-dtocalendar-export-dto.js} +0 -0
  343. /package/dist/esm/models/{space-edit-before-and-after-dto.js → json-result-excel-import-result-dtoinspection-standard-import-dto.js} +0 -0
  344. /package/dist/esm/models/{space-edit-excel-dto.js → json-result-excel-import-result-dtomaintenance-standard-import-dto.js} +0 -0
  345. /package/dist/esm/models/{sys-user-msg-do.js → json-result-list-inspection-standard-entity.js} +0 -0
  346. /package/dist/esm/models/{sys-user-msg-list-dto.js → json-result-list-work-order-dept-settings-entity.js} +0 -0
  347. /package/dist/esm/models/{sys-user-msg-search-list-vo.js → json-result-page-dto-inspection-standard-dto.js} +0 -0
  348. /package/dist/models/{calendar-add-redis-list-vo.js → dept-relation-dto.js} +0 -0
  349. /package/dist/models/{json-result-calendar-add-redis-list-vo.js → dept-relation.js} +0 -0
  350. /package/dist/models/{json-result-page-dto-inspection-standard-entity.js → excel-import-result-dtocalendar-export-dto.js} +0 -0
  351. /package/dist/models/{json-result-page-dto-sys-user-msg-list-dto.js → excel-import-result-dtoinspection-standard-import-dto.js} +0 -0
  352. /package/dist/models/{json-result-space-edit-before-and-after-dto.js → excel-import-result-dtomaintenance-standard-import-dto.js} +0 -0
  353. /package/dist/models/{json-result-sys-user-msg-do.js → inspection-standard-dto.js} +0 -0
  354. /package/dist/models/{page-dto-inspection-standard-entity.js → inspection-standard-import-dto.js} +0 -0
  355. /package/dist/models/{page-dto-sys-user-msg-list-dto.js → json-result-excel-import-result-dtocalendar-export-dto.js} +0 -0
  356. /package/dist/models/{space-edit-before-and-after-dto.js → json-result-excel-import-result-dtoinspection-standard-import-dto.js} +0 -0
  357. /package/dist/models/{space-edit-excel-dto.js → json-result-excel-import-result-dtomaintenance-standard-import-dto.js} +0 -0
  358. /package/dist/models/{sys-user-msg-do.js → json-result-list-inspection-standard-entity.js} +0 -0
  359. /package/dist/models/{sys-user-msg-list-dto.js → json-result-list-work-order-dept-settings-entity.js} +0 -0
  360. /package/dist/models/{sys-user-msg-search-list-vo.js → json-result-page-dto-inspection-standard-dto.js} +0 -0
@@ -0,0 +1,745 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { Configuration } from '../configuration';
13
+ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
+ import { type RequestArgs, BaseAPI } from '../base';
15
+ import type { InspectionCategoryEnum } from '../models';
16
+ import type { InspectionStandardAddOrUpdateVO } from '../models';
17
+ import type { JsonResultExcelImportResultDTOInspectionStandardImportDTO } from '../models';
18
+ import type { JsonResultInspectionStandardEntity } from '../models';
19
+ import type { JsonResultListInspectionStandardEntity } from '../models';
20
+ import type { JsonResultPageDtoInspectionStandardDTO } from '../models';
21
+ import type { JsonResultVoid } from '../models';
22
+ import type { WorkOrderPlanRepeatsEnum } from '../models';
23
+ /**
24
+ * InspectionStandardApi - axios parameter creator
25
+ * @export
26
+ */
27
+ export declare const InspectionStandardApiAxiosParamCreator: (configuration?: Configuration) => {
28
+ /**
29
+ *
30
+ * @summary 添加巡检标准
31
+ * @param {Array<InspectionStandardAddOrUpdateVO>} inspectionStandardAddOrUpdateVO
32
+ * @param {*} [options] Override http request option.
33
+ * @throws {RequiredError}
34
+ */
35
+ createInspectionStandard: (inspectionStandardAddOrUpdateVO: Array<InspectionStandardAddOrUpdateVO>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
36
+ /**
37
+ *
38
+ * @summary 删除巡检标准
39
+ * @param {number} id 巡检标准id
40
+ * @param {*} [options] Override http request option.
41
+ * @throws {RequiredError}
42
+ */
43
+ deleteInspectionStandard: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44
+ /**
45
+ *
46
+ * @summary 批量删除巡检标准
47
+ * @param {Array<number>} requestBody
48
+ * @param {*} [options] Override http request option.
49
+ * @throws {RequiredError}
50
+ */
51
+ deleteInspectionStandards: (requestBody: Array<number>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
52
+ /**
53
+ *
54
+ * @summary 巡检标准详情
55
+ * @param {number} id
56
+ * @param {*} [options] Override http request option.
57
+ * @throws {RequiredError}
58
+ */
59
+ getInspectionStandard: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
60
+ /**
61
+ *
62
+ * @summary 巡检标准导出-数据
63
+ * @param {number} parkId 园区id
64
+ * @param {string} [searchValue] 内容
65
+ * @param {InspectionCategoryEnum} [category] 巡检分类
66
+ * @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
67
+ * @param {*} [options] Override http request option.
68
+ * @throws {RequiredError}
69
+ */
70
+ inspectionStandardBatchExport: (parkId: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
71
+ /**
72
+ *
73
+ * @summary 巡检标准导入-确认导入
74
+ * @param {*} [options] Override http request option.
75
+ * @throws {RequiredError}
76
+ */
77
+ inspectionStandardBatchImportConfirm: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
78
+ /**
79
+ *
80
+ * @summary 巡检标准导入-预览结果
81
+ * @param {*} [options] Override http request option.
82
+ * @throws {RequiredError}
83
+ */
84
+ inspectionStandardBatchImportPreview: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
85
+ /**
86
+ *
87
+ * @summary 巡检标准导入-下载模板
88
+ * @param {*} [options] Override http request option.
89
+ * @throws {RequiredError}
90
+ */
91
+ inspectionStandardBatchImportTemplate: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
92
+ /**
93
+ *
94
+ * @summary 巡检标准导入-上传文件
95
+ * @param {number} parkId 园区id
96
+ * @param {File} file
97
+ * @param {string} [language] 语言
98
+ * @param {*} [options] Override http request option.
99
+ * @throws {RequiredError}
100
+ */
101
+ inspectionStandardBatchImportUpload: (parkId: number, file: File, language?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
102
+ /**
103
+ *
104
+ * @summary 巡检标准列表
105
+ * @param {number} parkId 园区id
106
+ * @param {number} pageSize 每页数量
107
+ * @param {number} page 页码
108
+ * @param {string} [searchValue] 内容
109
+ * @param {InspectionCategoryEnum} [category] 巡检分类
110
+ * @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
111
+ * @param {number} [equipmentSystemId] 设备系统ID
112
+ * @param {*} [options] Override http request option.
113
+ * @throws {RequiredError}
114
+ */
115
+ listInspectionStandard: (parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
116
+ /**
117
+ *
118
+ * @summary 根据设备id查询维保标准
119
+ * @param {number} equipmentId
120
+ * @param {*} [options] Override http request option.
121
+ * @throws {RequiredError}
122
+ */
123
+ listInspectionStandardByEquipmentId: (equipmentId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
124
+ /**
125
+ *
126
+ * @summary 根据设备系统id查询维保标准
127
+ * @param {number} equipmentSystemId
128
+ * @param {*} [options] Override http request option.
129
+ * @throws {RequiredError}
130
+ */
131
+ listInspectionStandardByEquipmentSystemId: (equipmentSystemId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
132
+ /**
133
+ *
134
+ * @summary 同步其他园区巡检标准
135
+ * @param {number} parkIdOne
136
+ * @param {number} parkIdTwo
137
+ * @param {*} [options] Override http request option.
138
+ * @throws {RequiredError}
139
+ */
140
+ syncInspectionStandard: (parkIdOne: number, parkIdTwo: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
141
+ /**
142
+ *
143
+ * @summary 修改巡检标准
144
+ * @param {number} id
145
+ * @param {InspectionStandardAddOrUpdateVO} inspectionStandardAddOrUpdateVO
146
+ * @param {*} [options] Override http request option.
147
+ * @throws {RequiredError}
148
+ */
149
+ updateInspectionStandard: (id: number, inspectionStandardAddOrUpdateVO: InspectionStandardAddOrUpdateVO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
150
+ };
151
+ /**
152
+ * InspectionStandardApi - functional programming interface
153
+ * @export
154
+ */
155
+ export declare const InspectionStandardApiFp: (configuration?: Configuration) => {
156
+ /**
157
+ *
158
+ * @summary 添加巡检标准
159
+ * @param {Array<InspectionStandardAddOrUpdateVO>} inspectionStandardAddOrUpdateVO
160
+ * @param {*} [options] Override http request option.
161
+ * @throws {RequiredError}
162
+ */
163
+ createInspectionStandard(inspectionStandardAddOrUpdateVO: Array<InspectionStandardAddOrUpdateVO>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
164
+ /**
165
+ *
166
+ * @summary 删除巡检标准
167
+ * @param {number} id 巡检标准id
168
+ * @param {*} [options] Override http request option.
169
+ * @throws {RequiredError}
170
+ */
171
+ deleteInspectionStandard(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
172
+ /**
173
+ *
174
+ * @summary 批量删除巡检标准
175
+ * @param {Array<number>} requestBody
176
+ * @param {*} [options] Override http request option.
177
+ * @throws {RequiredError}
178
+ */
179
+ deleteInspectionStandards(requestBody: Array<number>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
180
+ /**
181
+ *
182
+ * @summary 巡检标准详情
183
+ * @param {number} id
184
+ * @param {*} [options] Override http request option.
185
+ * @throws {RequiredError}
186
+ */
187
+ getInspectionStandard(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultInspectionStandardEntity>>;
188
+ /**
189
+ *
190
+ * @summary 巡检标准导出-数据
191
+ * @param {number} parkId 园区id
192
+ * @param {string} [searchValue] 内容
193
+ * @param {InspectionCategoryEnum} [category] 巡检分类
194
+ * @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
195
+ * @param {*} [options] Override http request option.
196
+ * @throws {RequiredError}
197
+ */
198
+ inspectionStandardBatchExport(parkId: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
199
+ /**
200
+ *
201
+ * @summary 巡检标准导入-确认导入
202
+ * @param {*} [options] Override http request option.
203
+ * @throws {RequiredError}
204
+ */
205
+ inspectionStandardBatchImportConfirm(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultExcelImportResultDTOInspectionStandardImportDTO>>;
206
+ /**
207
+ *
208
+ * @summary 巡检标准导入-预览结果
209
+ * @param {*} [options] Override http request option.
210
+ * @throws {RequiredError}
211
+ */
212
+ inspectionStandardBatchImportPreview(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultExcelImportResultDTOInspectionStandardImportDTO>>;
213
+ /**
214
+ *
215
+ * @summary 巡检标准导入-下载模板
216
+ * @param {*} [options] Override http request option.
217
+ * @throws {RequiredError}
218
+ */
219
+ inspectionStandardBatchImportTemplate(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
220
+ /**
221
+ *
222
+ * @summary 巡检标准导入-上传文件
223
+ * @param {number} parkId 园区id
224
+ * @param {File} file
225
+ * @param {string} [language] 语言
226
+ * @param {*} [options] Override http request option.
227
+ * @throws {RequiredError}
228
+ */
229
+ inspectionStandardBatchImportUpload(parkId: number, file: File, language?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultExcelImportResultDTOInspectionStandardImportDTO>>;
230
+ /**
231
+ *
232
+ * @summary 巡检标准列表
233
+ * @param {number} parkId 园区id
234
+ * @param {number} pageSize 每页数量
235
+ * @param {number} page 页码
236
+ * @param {string} [searchValue] 内容
237
+ * @param {InspectionCategoryEnum} [category] 巡检分类
238
+ * @param {WorkOrderPlanRepeatsEnum} [repeats] 周期
239
+ * @param {number} [equipmentSystemId] 设备系统ID
240
+ * @param {*} [options] Override http request option.
241
+ * @throws {RequiredError}
242
+ */
243
+ listInspectionStandard(parkId: number, pageSize: number, page: number, searchValue?: string, category?: InspectionCategoryEnum, repeats?: WorkOrderPlanRepeatsEnum, equipmentSystemId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoInspectionStandardDTO>>;
244
+ /**
245
+ *
246
+ * @summary 根据设备id查询维保标准
247
+ * @param {number} equipmentId
248
+ * @param {*} [options] Override http request option.
249
+ * @throws {RequiredError}
250
+ */
251
+ listInspectionStandardByEquipmentId(equipmentId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListInspectionStandardEntity>>;
252
+ /**
253
+ *
254
+ * @summary 根据设备系统id查询维保标准
255
+ * @param {number} equipmentSystemId
256
+ * @param {*} [options] Override http request option.
257
+ * @throws {RequiredError}
258
+ */
259
+ listInspectionStandardByEquipmentSystemId(equipmentSystemId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListInspectionStandardEntity>>;
260
+ /**
261
+ *
262
+ * @summary 同步其他园区巡检标准
263
+ * @param {number} parkIdOne
264
+ * @param {number} parkIdTwo
265
+ * @param {*} [options] Override http request option.
266
+ * @throws {RequiredError}
267
+ */
268
+ syncInspectionStandard(parkIdOne: number, parkIdTwo: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
269
+ /**
270
+ *
271
+ * @summary 修改巡检标准
272
+ * @param {number} id
273
+ * @param {InspectionStandardAddOrUpdateVO} inspectionStandardAddOrUpdateVO
274
+ * @param {*} [options] Override http request option.
275
+ * @throws {RequiredError}
276
+ */
277
+ updateInspectionStandard(id: number, inspectionStandardAddOrUpdateVO: InspectionStandardAddOrUpdateVO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
278
+ };
279
+ /**
280
+ * InspectionStandardApi - factory interface
281
+ * @export
282
+ */
283
+ export declare const InspectionStandardApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
284
+ /**
285
+ *
286
+ * @summary 添加巡检标准
287
+ * @param {InspectionStandardApiCreateInspectionStandardRequest} requestParameters Request parameters.
288
+ * @param {*} [options] Override http request option.
289
+ * @throws {RequiredError}
290
+ */
291
+ createInspectionStandard(requestParameters: InspectionStandardApiCreateInspectionStandardRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
292
+ /**
293
+ *
294
+ * @summary 删除巡检标准
295
+ * @param {InspectionStandardApiDeleteInspectionStandardRequest} requestParameters Request parameters.
296
+ * @param {*} [options] Override http request option.
297
+ * @throws {RequiredError}
298
+ */
299
+ deleteInspectionStandard(requestParameters: InspectionStandardApiDeleteInspectionStandardRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
300
+ /**
301
+ *
302
+ * @summary 批量删除巡检标准
303
+ * @param {InspectionStandardApiDeleteInspectionStandardsRequest} requestParameters Request parameters.
304
+ * @param {*} [options] Override http request option.
305
+ * @throws {RequiredError}
306
+ */
307
+ deleteInspectionStandards(requestParameters: InspectionStandardApiDeleteInspectionStandardsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
308
+ /**
309
+ *
310
+ * @summary 巡检标准详情
311
+ * @param {InspectionStandardApiGetInspectionStandardRequest} requestParameters Request parameters.
312
+ * @param {*} [options] Override http request option.
313
+ * @throws {RequiredError}
314
+ */
315
+ getInspectionStandard(requestParameters: InspectionStandardApiGetInspectionStandardRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultInspectionStandardEntity>;
316
+ /**
317
+ *
318
+ * @summary 巡检标准导出-数据
319
+ * @param {InspectionStandardApiInspectionStandardBatchExportRequest} requestParameters Request parameters.
320
+ * @param {*} [options] Override http request option.
321
+ * @throws {RequiredError}
322
+ */
323
+ inspectionStandardBatchExport(requestParameters: InspectionStandardApiInspectionStandardBatchExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
324
+ /**
325
+ *
326
+ * @summary 巡检标准导入-确认导入
327
+ * @param {*} [options] Override http request option.
328
+ * @throws {RequiredError}
329
+ */
330
+ inspectionStandardBatchImportConfirm(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultExcelImportResultDTOInspectionStandardImportDTO>;
331
+ /**
332
+ *
333
+ * @summary 巡检标准导入-预览结果
334
+ * @param {*} [options] Override http request option.
335
+ * @throws {RequiredError}
336
+ */
337
+ inspectionStandardBatchImportPreview(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultExcelImportResultDTOInspectionStandardImportDTO>;
338
+ /**
339
+ *
340
+ * @summary 巡检标准导入-下载模板
341
+ * @param {*} [options] Override http request option.
342
+ * @throws {RequiredError}
343
+ */
344
+ inspectionStandardBatchImportTemplate(options?: RawAxiosRequestConfig): AxiosPromise<void>;
345
+ /**
346
+ *
347
+ * @summary 巡检标准导入-上传文件
348
+ * @param {InspectionStandardApiInspectionStandardBatchImportUploadRequest} requestParameters Request parameters.
349
+ * @param {*} [options] Override http request option.
350
+ * @throws {RequiredError}
351
+ */
352
+ inspectionStandardBatchImportUpload(requestParameters: InspectionStandardApiInspectionStandardBatchImportUploadRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultExcelImportResultDTOInspectionStandardImportDTO>;
353
+ /**
354
+ *
355
+ * @summary 巡检标准列表
356
+ * @param {InspectionStandardApiListInspectionStandardRequest} requestParameters Request parameters.
357
+ * @param {*} [options] Override http request option.
358
+ * @throws {RequiredError}
359
+ */
360
+ listInspectionStandard(requestParameters: InspectionStandardApiListInspectionStandardRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultPageDtoInspectionStandardDTO>;
361
+ /**
362
+ *
363
+ * @summary 根据设备id查询维保标准
364
+ * @param {InspectionStandardApiListInspectionStandardByEquipmentIdRequest} requestParameters Request parameters.
365
+ * @param {*} [options] Override http request option.
366
+ * @throws {RequiredError}
367
+ */
368
+ listInspectionStandardByEquipmentId(requestParameters: InspectionStandardApiListInspectionStandardByEquipmentIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListInspectionStandardEntity>;
369
+ /**
370
+ *
371
+ * @summary 根据设备系统id查询维保标准
372
+ * @param {InspectionStandardApiListInspectionStandardByEquipmentSystemIdRequest} requestParameters Request parameters.
373
+ * @param {*} [options] Override http request option.
374
+ * @throws {RequiredError}
375
+ */
376
+ listInspectionStandardByEquipmentSystemId(requestParameters: InspectionStandardApiListInspectionStandardByEquipmentSystemIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListInspectionStandardEntity>;
377
+ /**
378
+ *
379
+ * @summary 同步其他园区巡检标准
380
+ * @param {InspectionStandardApiSyncInspectionStandardRequest} requestParameters Request parameters.
381
+ * @param {*} [options] Override http request option.
382
+ * @throws {RequiredError}
383
+ */
384
+ syncInspectionStandard(requestParameters: InspectionStandardApiSyncInspectionStandardRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
385
+ /**
386
+ *
387
+ * @summary 修改巡检标准
388
+ * @param {InspectionStandardApiUpdateInspectionStandardRequest} requestParameters Request parameters.
389
+ * @param {*} [options] Override http request option.
390
+ * @throws {RequiredError}
391
+ */
392
+ updateInspectionStandard(requestParameters: InspectionStandardApiUpdateInspectionStandardRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid>;
393
+ };
394
+ /**
395
+ * Request parameters for createInspectionStandard operation in InspectionStandardApi.
396
+ * @export
397
+ * @interface InspectionStandardApiCreateInspectionStandardRequest
398
+ */
399
+ export interface InspectionStandardApiCreateInspectionStandardRequest {
400
+ /**
401
+ *
402
+ * @type {Array<InspectionStandardAddOrUpdateVO>}
403
+ * @memberof InspectionStandardApiCreateInspectionStandard
404
+ */
405
+ readonly inspectionStandardAddOrUpdateVO: Array<InspectionStandardAddOrUpdateVO>;
406
+ }
407
+ /**
408
+ * Request parameters for deleteInspectionStandard operation in InspectionStandardApi.
409
+ * @export
410
+ * @interface InspectionStandardApiDeleteInspectionStandardRequest
411
+ */
412
+ export interface InspectionStandardApiDeleteInspectionStandardRequest {
413
+ /**
414
+ * 巡检标准id
415
+ * @type {number}
416
+ * @memberof InspectionStandardApiDeleteInspectionStandard
417
+ */
418
+ readonly id: number;
419
+ }
420
+ /**
421
+ * Request parameters for deleteInspectionStandards operation in InspectionStandardApi.
422
+ * @export
423
+ * @interface InspectionStandardApiDeleteInspectionStandardsRequest
424
+ */
425
+ export interface InspectionStandardApiDeleteInspectionStandardsRequest {
426
+ /**
427
+ *
428
+ * @type {Array<number>}
429
+ * @memberof InspectionStandardApiDeleteInspectionStandards
430
+ */
431
+ readonly requestBody: Array<number>;
432
+ }
433
+ /**
434
+ * Request parameters for getInspectionStandard operation in InspectionStandardApi.
435
+ * @export
436
+ * @interface InspectionStandardApiGetInspectionStandardRequest
437
+ */
438
+ export interface InspectionStandardApiGetInspectionStandardRequest {
439
+ /**
440
+ *
441
+ * @type {number}
442
+ * @memberof InspectionStandardApiGetInspectionStandard
443
+ */
444
+ readonly id: number;
445
+ }
446
+ /**
447
+ * Request parameters for inspectionStandardBatchExport operation in InspectionStandardApi.
448
+ * @export
449
+ * @interface InspectionStandardApiInspectionStandardBatchExportRequest
450
+ */
451
+ export interface InspectionStandardApiInspectionStandardBatchExportRequest {
452
+ /**
453
+ * 园区id
454
+ * @type {number}
455
+ * @memberof InspectionStandardApiInspectionStandardBatchExport
456
+ */
457
+ readonly parkId: number;
458
+ /**
459
+ * 内容
460
+ * @type {string}
461
+ * @memberof InspectionStandardApiInspectionStandardBatchExport
462
+ */
463
+ readonly searchValue?: string;
464
+ /**
465
+ * 巡检分类
466
+ * @type {InspectionCategoryEnum}
467
+ * @memberof InspectionStandardApiInspectionStandardBatchExport
468
+ */
469
+ readonly category?: InspectionCategoryEnum;
470
+ /**
471
+ * 周期
472
+ * @type {WorkOrderPlanRepeatsEnum}
473
+ * @memberof InspectionStandardApiInspectionStandardBatchExport
474
+ */
475
+ readonly repeats?: WorkOrderPlanRepeatsEnum;
476
+ }
477
+ /**
478
+ * Request parameters for inspectionStandardBatchImportUpload operation in InspectionStandardApi.
479
+ * @export
480
+ * @interface InspectionStandardApiInspectionStandardBatchImportUploadRequest
481
+ */
482
+ export interface InspectionStandardApiInspectionStandardBatchImportUploadRequest {
483
+ /**
484
+ * 园区id
485
+ * @type {number}
486
+ * @memberof InspectionStandardApiInspectionStandardBatchImportUpload
487
+ */
488
+ readonly parkId: number;
489
+ /**
490
+ *
491
+ * @type {File}
492
+ * @memberof InspectionStandardApiInspectionStandardBatchImportUpload
493
+ */
494
+ readonly file: File;
495
+ /**
496
+ * 语言
497
+ * @type {string}
498
+ * @memberof InspectionStandardApiInspectionStandardBatchImportUpload
499
+ */
500
+ readonly language?: string;
501
+ }
502
+ /**
503
+ * Request parameters for listInspectionStandard operation in InspectionStandardApi.
504
+ * @export
505
+ * @interface InspectionStandardApiListInspectionStandardRequest
506
+ */
507
+ export interface InspectionStandardApiListInspectionStandardRequest {
508
+ /**
509
+ * 园区id
510
+ * @type {number}
511
+ * @memberof InspectionStandardApiListInspectionStandard
512
+ */
513
+ readonly parkId: number;
514
+ /**
515
+ * 每页数量
516
+ * @type {number}
517
+ * @memberof InspectionStandardApiListInspectionStandard
518
+ */
519
+ readonly pageSize: number;
520
+ /**
521
+ * 页码
522
+ * @type {number}
523
+ * @memberof InspectionStandardApiListInspectionStandard
524
+ */
525
+ readonly page: number;
526
+ /**
527
+ * 内容
528
+ * @type {string}
529
+ * @memberof InspectionStandardApiListInspectionStandard
530
+ */
531
+ readonly searchValue?: string;
532
+ /**
533
+ * 巡检分类
534
+ * @type {InspectionCategoryEnum}
535
+ * @memberof InspectionStandardApiListInspectionStandard
536
+ */
537
+ readonly category?: InspectionCategoryEnum;
538
+ /**
539
+ * 周期
540
+ * @type {WorkOrderPlanRepeatsEnum}
541
+ * @memberof InspectionStandardApiListInspectionStandard
542
+ */
543
+ readonly repeats?: WorkOrderPlanRepeatsEnum;
544
+ /**
545
+ * 设备系统ID
546
+ * @type {number}
547
+ * @memberof InspectionStandardApiListInspectionStandard
548
+ */
549
+ readonly equipmentSystemId?: number;
550
+ }
551
+ /**
552
+ * Request parameters for listInspectionStandardByEquipmentId operation in InspectionStandardApi.
553
+ * @export
554
+ * @interface InspectionStandardApiListInspectionStandardByEquipmentIdRequest
555
+ */
556
+ export interface InspectionStandardApiListInspectionStandardByEquipmentIdRequest {
557
+ /**
558
+ *
559
+ * @type {number}
560
+ * @memberof InspectionStandardApiListInspectionStandardByEquipmentId
561
+ */
562
+ readonly equipmentId: number;
563
+ }
564
+ /**
565
+ * Request parameters for listInspectionStandardByEquipmentSystemId operation in InspectionStandardApi.
566
+ * @export
567
+ * @interface InspectionStandardApiListInspectionStandardByEquipmentSystemIdRequest
568
+ */
569
+ export interface InspectionStandardApiListInspectionStandardByEquipmentSystemIdRequest {
570
+ /**
571
+ *
572
+ * @type {number}
573
+ * @memberof InspectionStandardApiListInspectionStandardByEquipmentSystemId
574
+ */
575
+ readonly equipmentSystemId: number;
576
+ }
577
+ /**
578
+ * Request parameters for syncInspectionStandard operation in InspectionStandardApi.
579
+ * @export
580
+ * @interface InspectionStandardApiSyncInspectionStandardRequest
581
+ */
582
+ export interface InspectionStandardApiSyncInspectionStandardRequest {
583
+ /**
584
+ *
585
+ * @type {number}
586
+ * @memberof InspectionStandardApiSyncInspectionStandard
587
+ */
588
+ readonly parkIdOne: number;
589
+ /**
590
+ *
591
+ * @type {number}
592
+ * @memberof InspectionStandardApiSyncInspectionStandard
593
+ */
594
+ readonly parkIdTwo: number;
595
+ }
596
+ /**
597
+ * Request parameters for updateInspectionStandard operation in InspectionStandardApi.
598
+ * @export
599
+ * @interface InspectionStandardApiUpdateInspectionStandardRequest
600
+ */
601
+ export interface InspectionStandardApiUpdateInspectionStandardRequest {
602
+ /**
603
+ *
604
+ * @type {number}
605
+ * @memberof InspectionStandardApiUpdateInspectionStandard
606
+ */
607
+ readonly id: number;
608
+ /**
609
+ *
610
+ * @type {InspectionStandardAddOrUpdateVO}
611
+ * @memberof InspectionStandardApiUpdateInspectionStandard
612
+ */
613
+ readonly inspectionStandardAddOrUpdateVO: InspectionStandardAddOrUpdateVO;
614
+ }
615
+ /**
616
+ * InspectionStandardApi - object-oriented interface
617
+ * @export
618
+ * @class InspectionStandardApi
619
+ * @extends {BaseAPI}
620
+ */
621
+ export declare class InspectionStandardApi extends BaseAPI {
622
+ /**
623
+ *
624
+ * @summary 添加巡检标准
625
+ * @param {InspectionStandardApiCreateInspectionStandardRequest} requestParameters Request parameters.
626
+ * @param {*} [options] Override http request option.
627
+ * @throws {RequiredError}
628
+ * @memberof InspectionStandardApi
629
+ */
630
+ createInspectionStandard(requestParameters: InspectionStandardApiCreateInspectionStandardRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
631
+ /**
632
+ *
633
+ * @summary 删除巡检标准
634
+ * @param {InspectionStandardApiDeleteInspectionStandardRequest} requestParameters Request parameters.
635
+ * @param {*} [options] Override http request option.
636
+ * @throws {RequiredError}
637
+ * @memberof InspectionStandardApi
638
+ */
639
+ deleteInspectionStandard(requestParameters: InspectionStandardApiDeleteInspectionStandardRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
640
+ /**
641
+ *
642
+ * @summary 批量删除巡检标准
643
+ * @param {InspectionStandardApiDeleteInspectionStandardsRequest} requestParameters Request parameters.
644
+ * @param {*} [options] Override http request option.
645
+ * @throws {RequiredError}
646
+ * @memberof InspectionStandardApi
647
+ */
648
+ deleteInspectionStandards(requestParameters: InspectionStandardApiDeleteInspectionStandardsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
649
+ /**
650
+ *
651
+ * @summary 巡检标准详情
652
+ * @param {InspectionStandardApiGetInspectionStandardRequest} requestParameters Request parameters.
653
+ * @param {*} [options] Override http request option.
654
+ * @throws {RequiredError}
655
+ * @memberof InspectionStandardApi
656
+ */
657
+ getInspectionStandard(requestParameters: InspectionStandardApiGetInspectionStandardRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultInspectionStandardEntity, any>>;
658
+ /**
659
+ *
660
+ * @summary 巡检标准导出-数据
661
+ * @param {InspectionStandardApiInspectionStandardBatchExportRequest} requestParameters Request parameters.
662
+ * @param {*} [options] Override http request option.
663
+ * @throws {RequiredError}
664
+ * @memberof InspectionStandardApi
665
+ */
666
+ inspectionStandardBatchExport(requestParameters: InspectionStandardApiInspectionStandardBatchExportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
667
+ /**
668
+ *
669
+ * @summary 巡检标准导入-确认导入
670
+ * @param {*} [options] Override http request option.
671
+ * @throws {RequiredError}
672
+ * @memberof InspectionStandardApi
673
+ */
674
+ inspectionStandardBatchImportConfirm(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultExcelImportResultDTOInspectionStandardImportDTO, any>>;
675
+ /**
676
+ *
677
+ * @summary 巡检标准导入-预览结果
678
+ * @param {*} [options] Override http request option.
679
+ * @throws {RequiredError}
680
+ * @memberof InspectionStandardApi
681
+ */
682
+ inspectionStandardBatchImportPreview(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultExcelImportResultDTOInspectionStandardImportDTO, any>>;
683
+ /**
684
+ *
685
+ * @summary 巡检标准导入-下载模板
686
+ * @param {*} [options] Override http request option.
687
+ * @throws {RequiredError}
688
+ * @memberof InspectionStandardApi
689
+ */
690
+ inspectionStandardBatchImportTemplate(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
691
+ /**
692
+ *
693
+ * @summary 巡检标准导入-上传文件
694
+ * @param {InspectionStandardApiInspectionStandardBatchImportUploadRequest} requestParameters Request parameters.
695
+ * @param {*} [options] Override http request option.
696
+ * @throws {RequiredError}
697
+ * @memberof InspectionStandardApi
698
+ */
699
+ inspectionStandardBatchImportUpload(requestParameters: InspectionStandardApiInspectionStandardBatchImportUploadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultExcelImportResultDTOInspectionStandardImportDTO, any>>;
700
+ /**
701
+ *
702
+ * @summary 巡检标准列表
703
+ * @param {InspectionStandardApiListInspectionStandardRequest} requestParameters Request parameters.
704
+ * @param {*} [options] Override http request option.
705
+ * @throws {RequiredError}
706
+ * @memberof InspectionStandardApi
707
+ */
708
+ listInspectionStandard(requestParameters: InspectionStandardApiListInspectionStandardRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultPageDtoInspectionStandardDTO, any>>;
709
+ /**
710
+ *
711
+ * @summary 根据设备id查询维保标准
712
+ * @param {InspectionStandardApiListInspectionStandardByEquipmentIdRequest} requestParameters Request parameters.
713
+ * @param {*} [options] Override http request option.
714
+ * @throws {RequiredError}
715
+ * @memberof InspectionStandardApi
716
+ */
717
+ listInspectionStandardByEquipmentId(requestParameters: InspectionStandardApiListInspectionStandardByEquipmentIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListInspectionStandardEntity, any>>;
718
+ /**
719
+ *
720
+ * @summary 根据设备系统id查询维保标准
721
+ * @param {InspectionStandardApiListInspectionStandardByEquipmentSystemIdRequest} requestParameters Request parameters.
722
+ * @param {*} [options] Override http request option.
723
+ * @throws {RequiredError}
724
+ * @memberof InspectionStandardApi
725
+ */
726
+ listInspectionStandardByEquipmentSystemId(requestParameters: InspectionStandardApiListInspectionStandardByEquipmentSystemIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListInspectionStandardEntity, any>>;
727
+ /**
728
+ *
729
+ * @summary 同步其他园区巡检标准
730
+ * @param {InspectionStandardApiSyncInspectionStandardRequest} requestParameters Request parameters.
731
+ * @param {*} [options] Override http request option.
732
+ * @throws {RequiredError}
733
+ * @memberof InspectionStandardApi
734
+ */
735
+ syncInspectionStandard(requestParameters: InspectionStandardApiSyncInspectionStandardRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
736
+ /**
737
+ *
738
+ * @summary 修改巡检标准
739
+ * @param {InspectionStandardApiUpdateInspectionStandardRequest} requestParameters Request parameters.
740
+ * @param {*} [options] Override http request option.
741
+ * @throws {RequiredError}
742
+ * @memberof InspectionStandardApi
743
+ */
744
+ updateInspectionStandard(requestParameters: InspectionStandardApiUpdateInspectionStandardRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultVoid, any>>;
745
+ }