@gizone/rrs-client 3.11.16-alpha.82 → 3.11.17-alpha.84

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 (180) hide show
  1. package/.openapi-generator/FILES +23 -0
  2. package/README.md +2 -2
  3. package/apis/surveillance-api.ts +1343 -102
  4. package/apis/work-order-api.ts +398 -10
  5. package/configuration.ts +1 -1
  6. package/dist/apis/surveillance-api.d.ts +678 -0
  7. package/dist/apis/surveillance-api.js +960 -82
  8. package/dist/apis/work-order-api.d.ts +215 -10
  9. package/dist/apis/work-order-api.js +293 -4
  10. package/dist/configuration.js +1 -1
  11. package/dist/esm/apis/surveillance-api.d.ts +678 -0
  12. package/dist/esm/apis/surveillance-api.js +959 -81
  13. package/dist/esm/apis/work-order-api.d.ts +215 -10
  14. package/dist/esm/apis/work-order-api.js +293 -4
  15. package/dist/esm/configuration.js +1 -1
  16. package/dist/esm/models/functional-area-enum.d.ts +26 -0
  17. package/dist/esm/models/functional-area-enum.js +27 -0
  18. package/dist/esm/models/get-user-wx200-response.d.ts +4 -4
  19. package/dist/esm/models/index.d.ts +23 -0
  20. package/dist/esm/models/index.js +23 -0
  21. package/dist/esm/models/installation-body-enum.d.ts +22 -0
  22. package/dist/esm/models/installation-body-enum.js +23 -0
  23. package/dist/esm/models/ipage-access-vo.d.ts +6 -6
  24. package/dist/esm/models/json-result-new-work-monitor-repair-details-dto.d.ts +56 -0
  25. package/dist/esm/models/json-result-new-work-monitor-repair-details-dto.js +14 -0
  26. package/dist/esm/models/json-result-page-dto-surveillance-details-dto.d.ts +56 -0
  27. package/dist/esm/models/json-result-page-dto-surveillance-details-dto.js +14 -0
  28. package/dist/esm/models/json-result-surveillance-details-dto.d.ts +56 -0
  29. package/dist/esm/models/json-result-surveillance-details-dto.js +14 -0
  30. package/dist/esm/models/json-result-surveillance-live-dto.d.ts +56 -0
  31. package/dist/esm/models/json-result-surveillance-live-dto.js +14 -0
  32. package/dist/esm/models/new-work-monitor-repair-add-vo.d.ts +87 -0
  33. package/dist/esm/models/new-work-monitor-repair-add-vo.js +14 -0
  34. package/dist/esm/models/new-work-monitor-repair-details-dto.d.ts +184 -0
  35. package/dist/esm/models/new-work-monitor-repair-details-dto.js +20 -0
  36. package/dist/esm/models/page-dto-surveillance-details-dto.d.ts +31 -0
  37. package/dist/esm/models/page-dto-surveillance-details-dto.js +14 -0
  38. package/dist/esm/models/process-new-work-monitor-repair-vo.d.ts +30 -0
  39. package/dist/esm/models/process-new-work-monitor-repair-vo.js +14 -0
  40. package/dist/esm/models/space-add-excel-dto.d.ts +6 -0
  41. package/dist/esm/models/space-add-vo.d.ts +7 -0
  42. package/dist/esm/models/space-detail-dto.d.ts +7 -0
  43. package/dist/esm/models/space-edit-vo.d.ts +7 -0
  44. package/dist/esm/models/space-industry-attribute.d.ts +25 -0
  45. package/dist/esm/models/space-industry-attribute.js +26 -0
  46. package/dist/esm/models/space-tree-dto.d.ts +26 -19
  47. package/dist/esm/models/space.d.ts +43 -0
  48. package/dist/esm/models/space.js +14 -0
  49. package/dist/esm/models/surveillance-add-vo.d.ts +156 -0
  50. package/dist/esm/models/surveillance-add-vo.js +14 -0
  51. package/dist/esm/models/surveillance-details-dto.d.ts +222 -0
  52. package/dist/esm/models/surveillance-details-dto.js +14 -0
  53. package/dist/esm/models/surveillance-live-dto.d.ts +48 -0
  54. package/dist/esm/models/surveillance-live-dto.js +14 -0
  55. package/dist/esm/models/surveillance-status-enum.d.ts +21 -0
  56. package/dist/esm/models/surveillance-status-enum.js +22 -0
  57. package/dist/esm/models/surveillance-update-vo.d.ts +62 -0
  58. package/dist/esm/models/surveillance-update-vo.js +14 -0
  59. package/dist/esm/models/surveillance.d.ts +49 -0
  60. package/dist/esm/models/surveillance.js +14 -0
  61. package/dist/esm/models/work-order-circulation-vo.d.ts +12 -0
  62. package/dist/esm/models/work-order-decision-vo.d.ts +42 -0
  63. package/dist/esm/models/work-order-decision-vo.js +14 -0
  64. package/dist/esm/models/work-order-handler-dto.d.ts +61 -0
  65. package/dist/esm/models/work-order-handler-dto.js +14 -0
  66. package/dist/esm/models/work-order-internal-status-enum.d.ts +3 -0
  67. package/dist/esm/models/work-order-internal-status-enum.js +4 -1
  68. package/dist/esm/models/work-order-issue-type-enum.d.ts +3 -0
  69. package/dist/esm/models/work-order-issue-type-enum.js +4 -1
  70. package/dist/esm/models/work-order-source-enum.d.ts +1 -0
  71. package/dist/esm/models/work-order-source-enum.js +2 -1
  72. package/dist/esm/models/work-order-space-dto.d.ts +36 -0
  73. package/dist/esm/models/work-order-space-dto.js +14 -0
  74. package/dist/esm/models/work-order-sponsor-dto.d.ts +48 -0
  75. package/dist/esm/models/work-order-sponsor-dto.js +14 -0
  76. package/dist/esm/models/work-order-surveillance-dto.d.ts +30 -0
  77. package/dist/esm/models/work-order-surveillance-dto.js +14 -0
  78. package/dist/esm/models/work-order-type-enum.d.ts +1 -0
  79. package/dist/esm/models/work-order-type-enum.js +2 -1
  80. package/dist/models/functional-area-enum.d.ts +26 -0
  81. package/dist/models/functional-area-enum.js +30 -0
  82. package/dist/models/get-user-wx200-response.d.ts +4 -4
  83. package/dist/models/index.d.ts +23 -0
  84. package/dist/models/index.js +23 -0
  85. package/dist/models/installation-body-enum.d.ts +22 -0
  86. package/dist/models/installation-body-enum.js +26 -0
  87. package/dist/models/ipage-access-vo.d.ts +6 -6
  88. package/dist/models/json-result-new-work-monitor-repair-details-dto.d.ts +56 -0
  89. package/dist/models/json-result-new-work-monitor-repair-details-dto.js +15 -0
  90. package/dist/models/json-result-page-dto-surveillance-details-dto.d.ts +56 -0
  91. package/dist/models/json-result-page-dto-surveillance-details-dto.js +15 -0
  92. package/dist/models/json-result-surveillance-details-dto.d.ts +56 -0
  93. package/dist/models/json-result-surveillance-details-dto.js +15 -0
  94. package/dist/models/json-result-surveillance-live-dto.d.ts +56 -0
  95. package/dist/models/json-result-surveillance-live-dto.js +15 -0
  96. package/dist/models/new-work-monitor-repair-add-vo.d.ts +87 -0
  97. package/dist/models/new-work-monitor-repair-add-vo.js +15 -0
  98. package/dist/models/new-work-monitor-repair-details-dto.d.ts +184 -0
  99. package/dist/models/new-work-monitor-repair-details-dto.js +23 -0
  100. package/dist/models/page-dto-surveillance-details-dto.d.ts +31 -0
  101. package/dist/models/page-dto-surveillance-details-dto.js +15 -0
  102. package/dist/models/process-new-work-monitor-repair-vo.d.ts +30 -0
  103. package/dist/models/process-new-work-monitor-repair-vo.js +15 -0
  104. package/dist/models/space-add-excel-dto.d.ts +6 -0
  105. package/dist/models/space-add-vo.d.ts +7 -0
  106. package/dist/models/space-detail-dto.d.ts +7 -0
  107. package/dist/models/space-edit-vo.d.ts +7 -0
  108. package/dist/models/space-industry-attribute.d.ts +25 -0
  109. package/dist/models/space-industry-attribute.js +29 -0
  110. package/dist/models/space-tree-dto.d.ts +26 -19
  111. package/dist/models/space.d.ts +43 -0
  112. package/dist/models/space.js +15 -0
  113. package/dist/models/surveillance-add-vo.d.ts +156 -0
  114. package/dist/models/surveillance-add-vo.js +15 -0
  115. package/dist/models/surveillance-details-dto.d.ts +222 -0
  116. package/dist/models/surveillance-details-dto.js +15 -0
  117. package/dist/models/surveillance-live-dto.d.ts +48 -0
  118. package/dist/models/surveillance-live-dto.js +15 -0
  119. package/dist/models/surveillance-status-enum.d.ts +21 -0
  120. package/dist/models/surveillance-status-enum.js +25 -0
  121. package/dist/models/surveillance-update-vo.d.ts +62 -0
  122. package/dist/models/surveillance-update-vo.js +15 -0
  123. package/dist/models/surveillance.d.ts +49 -0
  124. package/dist/models/surveillance.js +15 -0
  125. package/dist/models/work-order-circulation-vo.d.ts +12 -0
  126. package/dist/models/work-order-decision-vo.d.ts +42 -0
  127. package/dist/models/work-order-decision-vo.js +15 -0
  128. package/dist/models/work-order-handler-dto.d.ts +61 -0
  129. package/dist/models/work-order-handler-dto.js +15 -0
  130. package/dist/models/work-order-internal-status-enum.d.ts +3 -0
  131. package/dist/models/work-order-internal-status-enum.js +4 -1
  132. package/dist/models/work-order-issue-type-enum.d.ts +3 -0
  133. package/dist/models/work-order-issue-type-enum.js +4 -1
  134. package/dist/models/work-order-source-enum.d.ts +1 -0
  135. package/dist/models/work-order-source-enum.js +2 -1
  136. package/dist/models/work-order-space-dto.d.ts +36 -0
  137. package/dist/models/work-order-space-dto.js +15 -0
  138. package/dist/models/work-order-sponsor-dto.d.ts +48 -0
  139. package/dist/models/work-order-sponsor-dto.js +15 -0
  140. package/dist/models/work-order-surveillance-dto.d.ts +30 -0
  141. package/dist/models/work-order-surveillance-dto.js +15 -0
  142. package/dist/models/work-order-type-enum.d.ts +1 -0
  143. package/dist/models/work-order-type-enum.js +2 -1
  144. package/models/functional-area-enum.ts +36 -0
  145. package/models/get-user-wx200-response.ts +4 -4
  146. package/models/index.ts +23 -0
  147. package/models/installation-body-enum.ts +32 -0
  148. package/models/ipage-access-vo.ts +6 -6
  149. package/models/json-result-new-work-monitor-repair-details-dto.ts +66 -0
  150. package/models/json-result-page-dto-surveillance-details-dto.ts +66 -0
  151. package/models/json-result-surveillance-details-dto.ts +66 -0
  152. package/models/json-result-surveillance-live-dto.ts +66 -0
  153. package/models/new-work-monitor-repair-add-vo.ts +101 -0
  154. package/models/new-work-monitor-repair-details-dto.ts +221 -0
  155. package/models/page-dto-surveillance-details-dto.ts +39 -0
  156. package/models/process-new-work-monitor-repair-vo.ts +36 -0
  157. package/models/space-add-excel-dto.ts +6 -0
  158. package/models/space-add-vo.ts +9 -0
  159. package/models/space-detail-dto.ts +9 -0
  160. package/models/space-edit-vo.ts +9 -0
  161. package/models/space-industry-attribute.ts +35 -0
  162. package/models/space-tree-dto.ts +28 -19
  163. package/models/space.ts +51 -0
  164. package/models/surveillance-add-vo.ts +162 -0
  165. package/models/surveillance-details-dto.ts +242 -0
  166. package/models/surveillance-live-dto.ts +54 -0
  167. package/models/surveillance-status-enum.ts +31 -0
  168. package/models/surveillance-update-vo.ts +74 -0
  169. package/models/surveillance.ts +59 -0
  170. package/models/work-order-circulation-vo.ts +12 -0
  171. package/models/work-order-decision-vo.ts +48 -0
  172. package/models/work-order-handler-dto.ts +71 -0
  173. package/models/work-order-internal-status-enum.ts +4 -1
  174. package/models/work-order-issue-type-enum.ts +4 -1
  175. package/models/work-order-source-enum.ts +2 -1
  176. package/models/work-order-space-dto.ts +42 -0
  177. package/models/work-order-sponsor-dto.ts +54 -0
  178. package/models/work-order-surveillance-dto.ts +36 -0
  179. package/models/work-order-type-enum.ts +2 -1
  180. package/package.json +1 -1
@@ -241,6 +241,7 @@ export * from './fire-control-equipment-batch-setting-location-vo';
241
241
  export * from './fire-control-equipment-edit-vo';
242
242
  export * from './fire-control-equipment-search-vo';
243
243
  export * from './followup-work-order-dto';
244
+ export * from './functional-area-enum';
244
245
  export * from './fusion-role-request-dto';
245
246
  export * from './gate-list-po';
246
247
  export * from './get-user-wx200-response';
@@ -299,6 +300,7 @@ export * from './inspection-standard-dto';
299
300
  export * from './inspection-standard-entity';
300
301
  export * from './inspection-standard-import-dto';
301
302
  export * from './inspection-standard-type-enum';
303
+ export * from './installation-body-enum';
302
304
  export * from './internet-access-park-vehicle-vo';
303
305
  export * from './internet-meter-add-vo';
304
306
  export * from './internet-meter-details-add-vo';
@@ -459,6 +461,7 @@ export * from './json-result-monitor-detail-dto';
459
461
  export * from './json-result-monitor-live-dto';
460
462
  export * from './json-result-monitor-screen-dto';
461
463
  export * from './json-result-monitor-sort-entity';
464
+ export * from './json-result-new-work-monitor-repair-details-dto';
462
465
  export * from './json-result-news-entity';
463
466
  export * from './json-result-node-dto';
464
467
  export * from './json-result-object';
@@ -502,6 +505,7 @@ export * from './json-result-page-dto-renovation-plan-list-vo';
502
505
  export * from './json-result-page-dto-stock-list-page-dto';
503
506
  export * from './json-result-page-dto-stock-record-list-page-dto';
504
507
  export * from './json-result-page-dto-supplier-contract-details-dto';
508
+ export * from './json-result-page-dto-surveillance-details-dto';
505
509
  export * from './json-result-page-dto-surveillance-roi-list-vo';
506
510
  export * from './json-result-page-dto-sys-user-msg-dto';
507
511
  export * from './json-result-page-dto-work-order-search-dto';
@@ -520,6 +524,8 @@ export * from './json-result-stock-push-settings-entity';
520
524
  export * from './json-result-string';
521
525
  export * from './json-result-supplier-contract-details-dto';
522
526
  export * from './json-result-supplier-entity';
527
+ export * from './json-result-surveillance-details-dto';
528
+ export * from './json-result-surveillance-live-dto';
523
529
  export * from './json-result-surveillance-roi-list-vo';
524
530
  export * from './json-result-switch-park-v2-dto';
525
531
  export * from './json-result-sys-dept';
@@ -573,6 +579,8 @@ export * from './monitor-search-dto';
573
579
  export * from './monitor-search-vo';
574
580
  export * from './monitor-sort-entity';
575
581
  export * from './monitor-sort-search-vo';
582
+ export * from './new-work-monitor-repair-add-vo';
583
+ export * from './new-work-monitor-repair-details-dto';
576
584
  export * from './news-entity';
577
585
  export * from './news-in-button';
578
586
  export * from './news-info';
@@ -642,6 +650,7 @@ export * from './page-dto-renovation-plan-list-vo';
642
650
  export * from './page-dto-stock-list-page-dto';
643
651
  export * from './page-dto-stock-record-list-page-dto';
644
652
  export * from './page-dto-supplier-contract-details-dto';
653
+ export * from './page-dto-surveillance-details-dto';
645
654
  export * from './page-dto-surveillance-roi-list-vo';
646
655
  export * from './page-dto-sys-user-msg-dto';
647
656
  export * from './page-dto-work-order-search-dto';
@@ -668,6 +677,7 @@ export * from './plan-search-dto';
668
677
  export * from './plan-to-state-vo';
669
678
  export * from './privacy-add-vo';
670
679
  export * from './privacy-update-state-dto';
680
+ export * from './process-new-work-monitor-repair-vo';
671
681
  export * from './process-work-order-vo';
672
682
  export * from './receive-information-visitors-vo';
673
683
  export * from './record-statistics-vo';
@@ -701,6 +711,7 @@ export * from './select-time-cost-tenant-rent-bill-bo';
701
711
  export * from './source-alert-dto';
702
712
  export * from './source-feedback-dto';
703
713
  export * from './source-work-order-inspection-dto';
714
+ export * from './space';
704
715
  export * from './space-add-excel-dto';
705
716
  export * from './space-add-plan-vo';
706
717
  export * from './space-add-redis-list-dto';
@@ -708,6 +719,7 @@ export * from './space-add-vo';
708
719
  export * from './space-detail-dto';
709
720
  export * from './space-edit-vo';
710
721
  export * from './space-image-detail-dto';
722
+ export * from './space-industry-attribute';
711
723
  export * from './space-point-dto';
712
724
  export * from './space-qr-code';
713
725
  export * from './space-qr-code-dto';
@@ -743,8 +755,14 @@ export * from './supplier-edit-vo';
743
755
  export * from './supplier-entity';
744
756
  export * from './supplier-search-vo';
745
757
  export * from './supplier-select-dto';
758
+ export * from './surveillance';
759
+ export * from './surveillance-add-vo';
760
+ export * from './surveillance-details-dto';
761
+ export * from './surveillance-live-dto';
746
762
  export * from './surveillance-roi-entity';
747
763
  export * from './surveillance-roi-list-vo';
764
+ export * from './surveillance-status-enum';
765
+ export * from './surveillance-update-vo';
748
766
  export * from './switch-pak-body';
749
767
  export * from './switch-pak-body-v2-vo';
750
768
  export * from './switch-park-v2-dto';
@@ -813,6 +831,7 @@ export * from './work-order-circulation-vo';
813
831
  export * from './work-order-comment-dto';
814
832
  export * from './work-order-comment-entity';
815
833
  export * from './work-order-comment-vo';
834
+ export * from './work-order-decision-vo';
816
835
  export * from './work-order-dept-dto';
817
836
  export * from './work-order-dept-settings-add-or-update-vo';
818
837
  export * from './work-order-dept-settings-entity';
@@ -820,6 +839,7 @@ export * from './work-order-detail-dto';
820
839
  export * from './work-order-distribute-leaflets-vo';
821
840
  export * from './work-order-handle-meter-reading-details-vo';
822
841
  export * from './work-order-handle-meter-reading-vo';
842
+ export * from './work-order-handler-dto';
823
843
  export * from './work-order-handler-status-enum';
824
844
  export * from './work-order-inspection-detail-dto';
825
845
  export * from './work-order-inspection-item-req';
@@ -835,11 +855,14 @@ export * from './work-order-report-vo';
835
855
  export * from './work-order-search-dto';
836
856
  export * from './work-order-settings-type-enum';
837
857
  export * from './work-order-source-enum';
858
+ export * from './work-order-space-dto';
859
+ export * from './work-order-sponsor-dto';
838
860
  export * from './work-order-spot-check-vo';
839
861
  export * from './work-order-staging-data-vo';
840
862
  export * from './work-order-status-vo';
841
863
  export * from './work-order-step-by-step-push-dto';
842
864
  export * from './work-order-step-by-step-push-user-details-dto';
865
+ export * from './work-order-surveillance-dto';
843
866
  export * from './work-order-type-dto';
844
867
  export * from './work-order-type-enum';
845
868
  export * from './wx-ma-user-info';
@@ -0,0 +1,22 @@
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
+ /**
13
+ * 安装主体枚举
14
+ * @export
15
+ * @enum {string}
16
+ */
17
+ export declare const InstallationBodyEnum: {
18
+ readonly RiRiShun: "RI_RI_SHUN";
19
+ readonly CangXiaoWei: "CANG_XIAO_WEI";
20
+ readonly FangDong: "FANG_DONG";
21
+ };
22
+ export type InstallationBodyEnum = typeof InstallationBodyEnum[keyof typeof InstallationBodyEnum];
@@ -0,0 +1,23 @@
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
+ * @export
17
+ * @enum {string}
18
+ */
19
+ export const InstallationBodyEnum = {
20
+ RiRiShun: 'RI_RI_SHUN',
21
+ CangXiaoWei: 'CANG_XIAO_WEI',
22
+ FangDong: 'FANG_DONG'
23
+ };
@@ -24,22 +24,22 @@ export interface IPageAccessVO {
24
24
  'total'?: number;
25
25
  /**
26
26
  *
27
- * @type {number}
27
+ * @type {boolean}
28
28
  * @memberof IPageAccessVO
29
29
  */
30
- 'current'?: number;
30
+ 'searchCount'?: boolean;
31
31
  /**
32
32
  *
33
- * @type {Array<AccessVO>}
33
+ * @type {number}
34
34
  * @memberof IPageAccessVO
35
35
  */
36
- 'records'?: Array<AccessVO>;
36
+ 'current'?: number;
37
37
  /**
38
38
  *
39
- * @type {boolean}
39
+ * @type {Array<AccessVO>}
40
40
  * @memberof IPageAccessVO
41
41
  */
42
- 'searchCount'?: boolean;
42
+ 'records'?: Array<AccessVO>;
43
43
  /**
44
44
  *
45
45
  * @type {number}
@@ -0,0 +1,56 @@
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 { BaseErrorResult } from './base-error-result';
13
+ import type { NewWorkMonitorRepairDetailsDto } from './new-work-monitor-repair-details-dto';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultNewWorkMonitorRepairDetailsDto
18
+ */
19
+ export interface JsonResultNewWorkMonitorRepairDetailsDto {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultNewWorkMonitorRepairDetailsDto
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultNewWorkMonitorRepairDetailsDto
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultNewWorkMonitorRepairDetailsDto
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ *
40
+ * @type {NewWorkMonitorRepairDetailsDto}
41
+ * @memberof JsonResultNewWorkMonitorRepairDetailsDto
42
+ */
43
+ 'data'?: NewWorkMonitorRepairDetailsDto | null;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultNewWorkMonitorRepairDetailsDto
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultNewWorkMonitorRepairDetailsDto
54
+ */
55
+ 'traceId'?: string | null;
56
+ }
@@ -0,0 +1,14 @@
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
+ export {};
@@ -0,0 +1,56 @@
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 { BaseErrorResult } from './base-error-result';
13
+ import type { PageDtoSurveillanceDetailsDto } from './page-dto-surveillance-details-dto';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultPageDtoSurveillanceDetailsDto
18
+ */
19
+ export interface JsonResultPageDtoSurveillanceDetailsDto {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultPageDtoSurveillanceDetailsDto
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultPageDtoSurveillanceDetailsDto
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultPageDtoSurveillanceDetailsDto
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ *
40
+ * @type {PageDtoSurveillanceDetailsDto}
41
+ * @memberof JsonResultPageDtoSurveillanceDetailsDto
42
+ */
43
+ 'data'?: PageDtoSurveillanceDetailsDto | null;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultPageDtoSurveillanceDetailsDto
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultPageDtoSurveillanceDetailsDto
54
+ */
55
+ 'traceId'?: string | null;
56
+ }
@@ -0,0 +1,14 @@
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
+ export {};
@@ -0,0 +1,56 @@
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 { BaseErrorResult } from './base-error-result';
13
+ import type { SurveillanceDetailsDto } from './surveillance-details-dto';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultSurveillanceDetailsDto
18
+ */
19
+ export interface JsonResultSurveillanceDetailsDto {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultSurveillanceDetailsDto
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultSurveillanceDetailsDto
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultSurveillanceDetailsDto
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ *
40
+ * @type {SurveillanceDetailsDto}
41
+ * @memberof JsonResultSurveillanceDetailsDto
42
+ */
43
+ 'data'?: SurveillanceDetailsDto;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultSurveillanceDetailsDto
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultSurveillanceDetailsDto
54
+ */
55
+ 'traceId'?: string | null;
56
+ }
@@ -0,0 +1,14 @@
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
+ export {};
@@ -0,0 +1,56 @@
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 { BaseErrorResult } from './base-error-result';
13
+ import type { SurveillanceLiveDto } from './surveillance-live-dto';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultSurveillanceLiveDto
18
+ */
19
+ export interface JsonResultSurveillanceLiveDto {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultSurveillanceLiveDto
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultSurveillanceLiveDto
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultSurveillanceLiveDto
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ *
40
+ * @type {SurveillanceLiveDto}
41
+ * @memberof JsonResultSurveillanceLiveDto
42
+ */
43
+ 'data'?: SurveillanceLiveDto | null;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultSurveillanceLiveDto
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultSurveillanceLiveDto
54
+ */
55
+ 'traceId'?: string | null;
56
+ }
@@ -0,0 +1,14 @@
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
+ export {};
@@ -0,0 +1,87 @@
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 { ParkCenterAttributeEnum } from './park-center-attribute-enum';
13
+ import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
14
+ import type { WorkOrderSourceEnum } from './work-order-source-enum';
15
+ /**
16
+ * 新建网络监控工单报修参数
17
+ * @export
18
+ * @interface NewWorkMonitorRepairAddVo
19
+ */
20
+ export interface NewWorkMonitorRepairAddVo {
21
+ /**
22
+ *
23
+ * @type {WorkOrderIssueTypeEnum}
24
+ * @memberof NewWorkMonitorRepairAddVo
25
+ */
26
+ 'issueType': WorkOrderIssueTypeEnum;
27
+ /**
28
+ *
29
+ * @type {ParkCenterAttributeEnum}
30
+ * @memberof NewWorkMonitorRepairAddVo
31
+ */
32
+ 'centerAttribute': ParkCenterAttributeEnum;
33
+ /**
34
+ * 工单名称
35
+ * @type {string}
36
+ * @memberof NewWorkMonitorRepairAddVo
37
+ */
38
+ 'workOrderName': string;
39
+ /**
40
+ * 图片
41
+ * @type {Array<string>}
42
+ * @memberof NewWorkMonitorRepairAddVo
43
+ */
44
+ 'images'?: Array<string>;
45
+ /**
46
+ * 视频
47
+ * @type {Array<string>}
48
+ * @memberof NewWorkMonitorRepairAddVo
49
+ */
50
+ 'imagesVideo'?: Array<string>;
51
+ /**
52
+ * 园区id
53
+ * @type {number}
54
+ * @memberof NewWorkMonitorRepairAddVo
55
+ */
56
+ 'parkId': number;
57
+ /**
58
+ * 位置
59
+ * @type {number}
60
+ * @memberof NewWorkMonitorRepairAddVo
61
+ */
62
+ 'spaceId': number;
63
+ /**
64
+ * 设备id
65
+ * @type {Array<number>}
66
+ * @memberof NewWorkMonitorRepairAddVo
67
+ */
68
+ 'equipmentIds': Array<number>;
69
+ /**
70
+ * 执行部门ID
71
+ * @type {Array<number>}
72
+ * @memberof NewWorkMonitorRepairAddVo
73
+ */
74
+ 'deptIds': Array<number>;
75
+ /**
76
+ * 工单执行人
77
+ * @type {number}
78
+ * @memberof NewWorkMonitorRepairAddVo
79
+ */
80
+ 'handlerUserId'?: number;
81
+ /**
82
+ *
83
+ * @type {WorkOrderSourceEnum}
84
+ * @memberof NewWorkMonitorRepairAddVo
85
+ */
86
+ 'workOrderSource': WorkOrderSourceEnum;
87
+ }
@@ -0,0 +1,14 @@
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
+ export {};