@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,42 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OpenAPI definition
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ * 工单部门设置新增或修改VO
19
+ * @export
20
+ * @interface WorkOrderDeptSettingsAddOrUpdateVO
21
+ */
22
+ export interface WorkOrderDeptSettingsAddOrUpdateVO {
23
+ /**
24
+ * id
25
+ * @type {number}
26
+ * @memberof WorkOrderDeptSettingsAddOrUpdateVO
27
+ */
28
+ 'id'?: number;
29
+ /**
30
+ * key
31
+ * @type {string}
32
+ * @memberof WorkOrderDeptSettingsAddOrUpdateVO
33
+ */
34
+ 'keyConfig': string;
35
+ /**
36
+ * deptId
37
+ * @type {number}
38
+ * @memberof WorkOrderDeptSettingsAddOrUpdateVO
39
+ */
40
+ 'deptId'?: number;
41
+ }
42
+
@@ -0,0 +1,77 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OpenAPI definition
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { WorkOrderTypeEnum } from './work-order-type-enum';
19
+
20
+ /**
21
+ * 返回数据,可以是任意类型的值
22
+ * @export
23
+ * @interface WorkOrderDeptSettingsEntity
24
+ */
25
+ export interface WorkOrderDeptSettingsEntity {
26
+ /**
27
+ *
28
+ * @type {number}
29
+ * @memberof WorkOrderDeptSettingsEntity
30
+ */
31
+ 'id'?: number;
32
+ /**
33
+ *
34
+ * @type {WorkOrderTypeEnum}
35
+ * @memberof WorkOrderDeptSettingsEntity
36
+ */
37
+ 'workOrderType'?: WorkOrderTypeEnum;
38
+ /**
39
+ * keyConfig
40
+ * @type {string}
41
+ * @memberof WorkOrderDeptSettingsEntity
42
+ */
43
+ 'keyConfig'?: string;
44
+ /**
45
+ * 部门id
46
+ * @type {number}
47
+ * @memberof WorkOrderDeptSettingsEntity
48
+ */
49
+ 'deptId'?: number;
50
+ /**
51
+ * 园区id
52
+ * @type {number}
53
+ * @memberof WorkOrderDeptSettingsEntity
54
+ */
55
+ 'parkId'?: number;
56
+ /**
57
+ * 创建时间
58
+ * @type {string}
59
+ * @memberof WorkOrderDeptSettingsEntity
60
+ */
61
+ 'createTime'?: string;
62
+ /**
63
+ * 更新时间
64
+ * @type {string}
65
+ * @memberof WorkOrderDeptSettingsEntity
66
+ */
67
+ 'updateTime'?: string;
68
+ /**
69
+ * 是否删除 1未删除 0删除
70
+ * @type {number}
71
+ * @memberof WorkOrderDeptSettingsEntity
72
+ */
73
+ 'isDelete'?: number;
74
+ }
75
+
76
+
77
+
@@ -13,6 +13,9 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { ParkCenterAttributeEnum } from './park-center-attribute-enum';
16
19
  // May contain unused imports in some cases
17
20
  // @ts-ignore
18
21
  import type { SourceAlertDTO } from './source-alert-dto';
@@ -33,6 +36,15 @@ import type { WorkOrderDeptDTO } from './work-order-dept-dto';
33
36
  import type { WorkOrderHandlerStatusEnum } from './work-order-handler-status-enum';
34
37
  // May contain unused imports in some cases
35
38
  // @ts-ignore
39
+ import type { WorkOrderInternalStatusEnum } from './work-order-internal-status-enum';
40
+ // May contain unused imports in some cases
41
+ // @ts-ignore
42
+ import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
43
+ // May contain unused imports in some cases
44
+ // @ts-ignore
45
+ import type { WorkOrderLiabilityPartyEnum } from './work-order-liability-party-enum';
46
+ // May contain unused imports in some cases
47
+ // @ts-ignore
36
48
  import type { WorkOrderSourceEnum } from './work-order-source-enum';
37
49
  // May contain unused imports in some cases
38
50
  // @ts-ignore
@@ -266,6 +278,12 @@ export interface WorkOrderDetailDTO {
266
278
  * @memberof WorkOrderDetailDTO
267
279
  */
268
280
  'handlerId'?: number;
281
+ /**
282
+ * 处理人id
283
+ * @type {number}
284
+ * @memberof WorkOrderDetailDTO
285
+ */
286
+ 'handlerUserId'?: number;
269
287
  /**
270
288
  * 预计执行时间
271
289
  * @type {number}
@@ -314,6 +332,42 @@ export interface WorkOrderDetailDTO {
314
332
  * @memberof WorkOrderDetailDTO
315
333
  */
316
334
  'equipmentName'?: string;
335
+ /**
336
+ *
337
+ * @type {ParkCenterAttributeEnum}
338
+ * @memberof WorkOrderDetailDTO
339
+ */
340
+ 'centerAttribute': ParkCenterAttributeEnum;
341
+ /**
342
+ *
343
+ * @type {WorkOrderIssueTypeEnum}
344
+ * @memberof WorkOrderDetailDTO
345
+ */
346
+ 'workOrderIssueType'?: WorkOrderIssueTypeEnum;
347
+ /**
348
+ *
349
+ * @type {WorkOrderInternalStatusEnum}
350
+ * @memberof WorkOrderDetailDTO
351
+ */
352
+ 'internalStatus'?: WorkOrderInternalStatusEnum;
353
+ /**
354
+ *
355
+ * @type {WorkOrderLiabilityPartyEnum}
356
+ * @memberof WorkOrderDetailDTO
357
+ */
358
+ 'liabilityParty'?: WorkOrderLiabilityPartyEnum;
359
+ /**
360
+ * 责任原因
361
+ * @type {string}
362
+ * @memberof WorkOrderDetailDTO
363
+ */
364
+ 'liabilityCause'?: string;
365
+ /**
366
+ * 预计完成时间
367
+ * @type {string}
368
+ * @memberof WorkOrderDetailDTO
369
+ */
370
+ 'expectedCompletionTime'?: string;
317
371
  }
318
372
 
319
373
  export const WorkOrderDetailDTOWorkOrderStatusEnum = {
@@ -0,0 +1,33 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OpenAPI definition
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ * 工单内部状态(工单当前处于状态)
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+
23
+ export const WorkOrderInternalStatusEnum = {
24
+ RepairInProgressLevelOne: 'REPAIR_IN_PROGRESS_LEVEL_ONE',
25
+ RepairInProgressLevelTwo: 'REPAIR_IN_PROGRESS_LEVEL_TWO',
26
+ RepairInProgressLevelThree: 'REPAIR_IN_PROGRESS_LEVEL_THREE',
27
+ RepairInProgressLevelFour: 'REPAIR_IN_PROGRESS_LEVEL_FOUR'
28
+ } as const;
29
+
30
+ export type WorkOrderInternalStatusEnum = typeof WorkOrderInternalStatusEnum[keyof typeof WorkOrderInternalStatusEnum];
31
+
32
+
33
+
@@ -0,0 +1,36 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OpenAPI definition
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ * 工单问题类型
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+
23
+ export const WorkOrderIssueTypeEnum = {
24
+ FireIssue: 'FIRE_ISSUE',
25
+ EnergyIssues: 'ENERGY_ISSUES',
26
+ AccessIssue: 'ACCESS_ISSUE',
27
+ SurveillanceIssues: 'SURVEILLANCE_ISSUES',
28
+ HygieneAndGreeningIssue: 'HYGIENE_AND_GREENING_ISSUE',
29
+ FacilityDamageIssue: 'FACILITY_DAMAGE_ISSUE',
30
+ SecurityIssue: 'SECURITY_ISSUE'
31
+ } as const;
32
+
33
+ export type WorkOrderIssueTypeEnum = typeof WorkOrderIssueTypeEnum[keyof typeof WorkOrderIssueTypeEnum];
34
+
35
+
36
+
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OpenAPI definition
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ * 责任方
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+
23
+ export const WorkOrderLiabilityPartyEnum = {
24
+ ManMade: 'MAN_MADE',
25
+ NotManMade: 'NOT_MAN_MADE'
26
+ } as const;
27
+
28
+ export type WorkOrderLiabilityPartyEnum = typeof WorkOrderLiabilityPartyEnum[keyof typeof WorkOrderLiabilityPartyEnum];
29
+
30
+
31
+
@@ -13,6 +13,9 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { WorkOrderSettingsTypeEnum } from './work-order-settings-type-enum';
16
19
 
17
20
  /**
18
21
  * 返回数据,可以是任意类型的值
@@ -33,11 +36,11 @@ export interface WorkOrderPushSettingsEntity {
33
36
  */
34
37
  'parkId'?: number;
35
38
  /**
36
- * 类型
37
- * @type {string}
39
+ *
40
+ * @type {WorkOrderSettingsTypeEnum}
38
41
  * @memberof WorkOrderPushSettingsEntity
39
42
  */
40
- 'type'?: WorkOrderPushSettingsEntityTypeEnum;
43
+ 'type'?: WorkOrderSettingsTypeEnum;
41
44
  /**
42
45
  * 查看部门
43
46
  * @type {Array<number>}
@@ -94,20 +97,5 @@ export interface WorkOrderPushSettingsEntity {
94
97
  'roleIds'?: Array<number>;
95
98
  }
96
99
 
97
- export const WorkOrderPushSettingsEntityTypeEnum = {
98
- RepairWorkOrder: 'REPAIR_WORK_ORDER',
99
- InspectionWorkOrder: 'INSPECTION_WORK_ORDER',
100
- AiWorkOrder: 'AI_WORK_ORDER',
101
- MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER',
102
- TranscriptionWorkOrder: 'TRANSCRIPTION_WORK_ORDER',
103
- FireFightingWorkOrder: 'FIRE_FIGHTING_WORK_ORDER',
104
- InternetOfThingsWorkOrder: 'INTERNET_OF_THINGS_WORK_ORDER',
105
- VideoRecognitionWorkOrder: 'VIDEO_RECOGNITION_WORK_ORDER',
106
- DecorationOrderProperty: 'DECORATION_ORDER_PROPERTY',
107
- DecorationOrderTenant: 'DECORATION_ORDER_TENANT',
108
- DecorationOrderSupplier: 'DECORATION_ORDER_SUPPLIER'
109
- } as const;
110
-
111
- export type WorkOrderPushSettingsEntityTypeEnum = typeof WorkOrderPushSettingsEntityTypeEnum[keyof typeof WorkOrderPushSettingsEntityTypeEnum];
112
100
 
113
101
 
@@ -13,6 +13,9 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { WorkOrderSettingsTypeEnum } from './work-order-settings-type-enum';
16
19
 
17
20
  /**
18
21
  * 添加或修改工单推送
@@ -33,11 +36,11 @@ export interface WorkOrderPushSettingsSaveOrUpdateVO {
33
36
  */
34
37
  'parkId'?: number;
35
38
  /**
36
- * 类型
37
- * @type {string}
39
+ *
40
+ * @type {WorkOrderSettingsTypeEnum}
38
41
  * @memberof WorkOrderPushSettingsSaveOrUpdateVO
39
42
  */
40
- 'type'?: WorkOrderPushSettingsSaveOrUpdateVOTypeEnum;
43
+ 'type'?: WorkOrderSettingsTypeEnum;
41
44
  /**
42
45
  * 查看部门
43
46
  * @type {Array<number>}
@@ -82,20 +85,5 @@ export interface WorkOrderPushSettingsSaveOrUpdateVO {
82
85
  'roleIds'?: Array<number>;
83
86
  }
84
87
 
85
- export const WorkOrderPushSettingsSaveOrUpdateVOTypeEnum = {
86
- RepairWorkOrder: 'REPAIR_WORK_ORDER',
87
- InspectionWorkOrder: 'INSPECTION_WORK_ORDER',
88
- AiWorkOrder: 'AI_WORK_ORDER',
89
- MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER',
90
- TranscriptionWorkOrder: 'TRANSCRIPTION_WORK_ORDER',
91
- FireFightingWorkOrder: 'FIRE_FIGHTING_WORK_ORDER',
92
- InternetOfThingsWorkOrder: 'INTERNET_OF_THINGS_WORK_ORDER',
93
- VideoRecognitionWorkOrder: 'VIDEO_RECOGNITION_WORK_ORDER',
94
- DecorationOrderProperty: 'DECORATION_ORDER_PROPERTY',
95
- DecorationOrderTenant: 'DECORATION_ORDER_TENANT',
96
- DecorationOrderSupplier: 'DECORATION_ORDER_SUPPLIER'
97
- } as const;
98
-
99
- export type WorkOrderPushSettingsSaveOrUpdateVOTypeEnum = typeof WorkOrderPushSettingsSaveOrUpdateVOTypeEnum[keyof typeof WorkOrderPushSettingsSaveOrUpdateVOTypeEnum];
100
88
 
101
89
 
@@ -15,25 +15,27 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import type { SpaceEditExcelDTO } from './space-edit-excel-dto';
18
+ import type { WorkOrderInternalStatusEnum } from './work-order-internal-status-enum';
19
19
 
20
20
  /**
21
- * 返回数据,可以是任意类型的值
21
+ * 工单上报
22
22
  * @export
23
- * @interface SpaceEditBeforeAndAfterDTO
23
+ * @interface WorkOrderReportVo
24
24
  */
25
- export interface SpaceEditBeforeAndAfterDTO {
25
+ export interface WorkOrderReportVo {
26
26
  /**
27
27
  *
28
- * @type {Array<SpaceEditExcelDTO>}
29
- * @memberof SpaceEditBeforeAndAfterDTO
28
+ * @type {WorkOrderInternalStatusEnum}
29
+ * @memberof WorkOrderReportVo
30
30
  */
31
- 'spaceEditBeforeDTOList'?: Array<SpaceEditExcelDTO>;
31
+ 'internalStatus': WorkOrderInternalStatusEnum;
32
32
  /**
33
- *
34
- * @type {Array<SpaceEditExcelDTO>}
35
- * @memberof SpaceEditBeforeAndAfterDTO
33
+ * 指定工单处理人id
34
+ * @type {number}
35
+ * @memberof WorkOrderReportVo
36
36
  */
37
- 'spaceEditAfterDTOList'?: Array<SpaceEditExcelDTO>;
37
+ 'handlerUserId': number;
38
38
  }
39
39
 
40
+
41
+
@@ -0,0 +1,40 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OpenAPI definition
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ * 类型
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+
23
+ export const WorkOrderSettingsTypeEnum = {
24
+ RepairWorkOrder: 'REPAIR_WORK_ORDER',
25
+ InspectionWorkOrder: 'INSPECTION_WORK_ORDER',
26
+ AiWorkOrder: 'AI_WORK_ORDER',
27
+ MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER',
28
+ TranscriptionWorkOrder: 'TRANSCRIPTION_WORK_ORDER',
29
+ FireFightingWorkOrder: 'FIRE_FIGHTING_WORK_ORDER',
30
+ InternetOfThingsWorkOrder: 'INTERNET_OF_THINGS_WORK_ORDER',
31
+ VideoRecognitionWorkOrder: 'VIDEO_RECOGNITION_WORK_ORDER',
32
+ DecorationOrderProperty: 'DECORATION_ORDER_PROPERTY',
33
+ DecorationOrderTenant: 'DECORATION_ORDER_TENANT',
34
+ DecorationOrderSupplier: 'DECORATION_ORDER_SUPPLIER'
35
+ } as const;
36
+
37
+ export type WorkOrderSettingsTypeEnum = typeof WorkOrderSettingsTypeEnum[keyof typeof WorkOrderSettingsTypeEnum];
38
+
39
+
40
+
@@ -0,0 +1,59 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OpenAPI definition
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { WorkOrderLiabilityPartyEnum } from './work-order-liability-party-enum';
19
+
20
+ /**
21
+ * 工单暂存数据
22
+ * @export
23
+ * @interface WorkOrderStagingDataVo
24
+ */
25
+ export interface WorkOrderStagingDataVo {
26
+ /**
27
+ * 处理照片
28
+ * @type {Array<string>}
29
+ * @memberof WorkOrderStagingDataVo
30
+ */
31
+ 'handlerImage'?: Array<string>;
32
+ /**
33
+ * 备注
34
+ * @type {string}
35
+ * @memberof WorkOrderStagingDataVo
36
+ */
37
+ 'remarks'?: string;
38
+ /**
39
+ *
40
+ * @type {WorkOrderLiabilityPartyEnum}
41
+ * @memberof WorkOrderStagingDataVo
42
+ */
43
+ 'liabilityParty'?: WorkOrderLiabilityPartyEnum;
44
+ /**
45
+ * 责任原因
46
+ * @type {string}
47
+ * @memberof WorkOrderStagingDataVo
48
+ */
49
+ 'liabilityCause'?: string;
50
+ /**
51
+ * 预计完成时间
52
+ * @type {string}
53
+ * @memberof WorkOrderStagingDataVo
54
+ */
55
+ 'expectedCompletionTime'?: string;
56
+ }
57
+
58
+
59
+
@@ -15,7 +15,7 @@
15
15
 
16
16
 
17
17
  /**
18
- * 工单类型
18
+ *
19
19
  * @export
20
20
  * @enum {string}
21
21
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "3.11.12-alpha.9",
3
+ "version": "3.11.13-alpha.60",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {