@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
@@ -0,0 +1,42 @@
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
+ * @interface WorkOrderDecisionVo
16
+ */
17
+ export interface WorkOrderDecisionVo {
18
+ /**
19
+ * 是否需要维修
20
+ * @type {boolean}
21
+ * @memberof WorkOrderDecisionVo
22
+ */
23
+ 'isNeedRepair'?: boolean;
24
+ /**
25
+ * 维修金额
26
+ * @type {number}
27
+ * @memberof WorkOrderDecisionVo
28
+ */
29
+ 'repairAmount'?: number;
30
+ /**
31
+ * 原因描述
32
+ * @type {string}
33
+ * @memberof WorkOrderDecisionVo
34
+ */
35
+ 'remarks'?: string;
36
+ /**
37
+ * 处理人ID
38
+ * @type {number}
39
+ * @memberof WorkOrderDecisionVo
40
+ */
41
+ 'handlerUserId'?: number;
42
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,61 @@
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 { WorkOrderHandlerStatusEnum } from './work-order-handler-status-enum';
13
+ /**
14
+ * 工单处理人
15
+ * @export
16
+ * @interface WorkOrderHandlerDto
17
+ */
18
+ export interface WorkOrderHandlerDto {
19
+ /**
20
+ * 处理人id
21
+ * @type {number}
22
+ * @memberof WorkOrderHandlerDto
23
+ */
24
+ 'handlerUserId'?: number;
25
+ /**
26
+ * 处理人名称
27
+ * @type {string}
28
+ * @memberof WorkOrderHandlerDto
29
+ */
30
+ 'handlerUserName'?: string;
31
+ /**
32
+ * 处理人部门id
33
+ * @type {number}
34
+ * @memberof WorkOrderHandlerDto
35
+ */
36
+ 'handlerUserDeptId'?: number;
37
+ /**
38
+ * 处理人部门名称/租户名称
39
+ * @type {string}
40
+ * @memberof WorkOrderHandlerDto
41
+ */
42
+ 'handlerUserDeptName'?: string;
43
+ /**
44
+ * 处理时间
45
+ * @type {string}
46
+ * @memberof WorkOrderHandlerDto
47
+ */
48
+ 'handlerTime'?: string;
49
+ /**
50
+ *
51
+ * @type {WorkOrderHandlerStatusEnum}
52
+ * @memberof WorkOrderHandlerDto
53
+ */
54
+ 'handlerResult'?: WorkOrderHandlerStatusEnum;
55
+ /**
56
+ * 处理照片
57
+ * @type {Array<string>}
58
+ * @memberof WorkOrderHandlerDto
59
+ */
60
+ 'handlerImage'?: Array<string>;
61
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -19,5 +19,8 @@ export declare const WorkOrderInternalStatusEnum: {
19
19
  readonly RepairInProgressLevelTwo: "REPAIR_IN_PROGRESS_LEVEL_TWO";
20
20
  readonly RepairInProgressLevelThree: "REPAIR_IN_PROGRESS_LEVEL_THREE";
21
21
  readonly RepairInProgressLevelFour: "REPAIR_IN_PROGRESS_LEVEL_FOUR";
22
+ readonly NewWorkMonitorRepairInProgressLevelOne: "NEW_WORK_MONITOR_REPAIR_IN_PROGRESS_LEVEL_ONE";
23
+ readonly NewWorkMonitorRepairInProgressLevelTwo: "NEW_WORK_MONITOR_REPAIR_IN_PROGRESS_LEVEL_TWO";
24
+ readonly NewWorkMonitorRepairInProgressLevelThree: "NEW_WORK_MONITOR_REPAIR_IN_PROGRESS_LEVEL_THREE";
22
25
  };
23
26
  export type WorkOrderInternalStatusEnum = typeof WorkOrderInternalStatusEnum[keyof typeof WorkOrderInternalStatusEnum];
@@ -23,5 +23,8 @@ exports.WorkOrderInternalStatusEnum = {
23
23
  RepairInProgressLevelOne: 'REPAIR_IN_PROGRESS_LEVEL_ONE',
24
24
  RepairInProgressLevelTwo: 'REPAIR_IN_PROGRESS_LEVEL_TWO',
25
25
  RepairInProgressLevelThree: 'REPAIR_IN_PROGRESS_LEVEL_THREE',
26
- RepairInProgressLevelFour: 'REPAIR_IN_PROGRESS_LEVEL_FOUR'
26
+ RepairInProgressLevelFour: 'REPAIR_IN_PROGRESS_LEVEL_FOUR',
27
+ NewWorkMonitorRepairInProgressLevelOne: 'NEW_WORK_MONITOR_REPAIR_IN_PROGRESS_LEVEL_ONE',
28
+ NewWorkMonitorRepairInProgressLevelTwo: 'NEW_WORK_MONITOR_REPAIR_IN_PROGRESS_LEVEL_TWO',
29
+ NewWorkMonitorRepairInProgressLevelThree: 'NEW_WORK_MONITOR_REPAIR_IN_PROGRESS_LEVEL_THREE'
27
30
  };
@@ -22,5 +22,8 @@ export declare const WorkOrderIssueTypeEnum: {
22
22
  readonly HygieneAndGreeningIssue: "HYGIENE_AND_GREENING_ISSUE";
23
23
  readonly FacilityDamageIssue: "FACILITY_DAMAGE_ISSUE";
24
24
  readonly SecurityIssue: "SECURITY_ISSUE";
25
+ readonly Networking: "NETWORKING";
26
+ readonly Surveillance: "SURVEILLANCE";
27
+ readonly DesktopTerminal: "DESKTOP_TERMINAL";
25
28
  };
26
29
  export type WorkOrderIssueTypeEnum = typeof WorkOrderIssueTypeEnum[keyof typeof WorkOrderIssueTypeEnum];
@@ -26,5 +26,8 @@ exports.WorkOrderIssueTypeEnum = {
26
26
  SurveillanceIssues: 'SURVEILLANCE_ISSUES',
27
27
  HygieneAndGreeningIssue: 'HYGIENE_AND_GREENING_ISSUE',
28
28
  FacilityDamageIssue: 'FACILITY_DAMAGE_ISSUE',
29
- SecurityIssue: 'SECURITY_ISSUE'
29
+ SecurityIssue: 'SECURITY_ISSUE',
30
+ Networking: 'NETWORKING',
31
+ Surveillance: 'SURVEILLANCE',
32
+ DesktopTerminal: 'DESKTOP_TERMINAL'
30
33
  };
@@ -21,5 +21,6 @@ export declare const WorkOrderSourceEnum: {
21
21
  readonly InspectionTransferWorkOrder: "INSPECTION_TRANSFER_WORK_ORDER";
22
22
  readonly AiInspectionTransferWorkOrder: "AI_INSPECTION_TRANSFER_WORK_ORDER";
23
23
  readonly MaintenanceTransferWorkOrder: "MAINTENANCE_TRANSFER_WORK_ORDER";
24
+ readonly SurveillanceOffLineTransferWorkOrder: "SURVEILLANCE_OFF_LINE_TRANSFER_WORK_ORDER";
24
25
  };
25
26
  export type WorkOrderSourceEnum = typeof WorkOrderSourceEnum[keyof typeof WorkOrderSourceEnum];
@@ -25,5 +25,6 @@ exports.WorkOrderSourceEnum = {
25
25
  AlterTransferWorkOrder: 'ALTER_TRANSFER_WORK_ORDER',
26
26
  InspectionTransferWorkOrder: 'INSPECTION_TRANSFER_WORK_ORDER',
27
27
  AiInspectionTransferWorkOrder: 'AI_INSPECTION_TRANSFER_WORK_ORDER',
28
- MaintenanceTransferWorkOrder: 'MAINTENANCE_TRANSFER_WORK_ORDER'
28
+ MaintenanceTransferWorkOrder: 'MAINTENANCE_TRANSFER_WORK_ORDER',
29
+ SurveillanceOffLineTransferWorkOrder: 'SURVEILLANCE_OFF_LINE_TRANSFER_WORK_ORDER'
29
30
  };
@@ -0,0 +1,36 @@
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
+ * @interface WorkOrderSpaceDto
16
+ */
17
+ export interface WorkOrderSpaceDto {
18
+ /**
19
+ * 空间id
20
+ * @type {number}
21
+ * @memberof WorkOrderSpaceDto
22
+ */
23
+ 'spaceId'?: number;
24
+ /**
25
+ * 空间名称
26
+ * @type {string}
27
+ * @memberof WorkOrderSpaceDto
28
+ */
29
+ 'spaceName'?: string;
30
+ /**
31
+ * 父名称
32
+ * @type {string}
33
+ * @memberof WorkOrderSpaceDto
34
+ */
35
+ 'parentName'?: string;
36
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,48 @@
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
+ * @interface WorkOrderSponsorDto
16
+ */
17
+ export interface WorkOrderSponsorDto {
18
+ /**
19
+ * 发起时间
20
+ * @type {string}
21
+ * @memberof WorkOrderSponsorDto
22
+ */
23
+ 'startTime'?: string;
24
+ /**
25
+ * 发起人id
26
+ * @type {number}
27
+ * @memberof WorkOrderSponsorDto
28
+ */
29
+ 'sponsorId'?: number;
30
+ /**
31
+ * 发起人名称
32
+ * @type {string}
33
+ * @memberof WorkOrderSponsorDto
34
+ */
35
+ 'sponsorName'?: string;
36
+ /**
37
+ * 发起人部门id
38
+ * @type {number}
39
+ * @memberof WorkOrderSponsorDto
40
+ */
41
+ 'sponsorUserDeptId'?: number;
42
+ /**
43
+ * 发起人部门名称/租户名称
44
+ * @type {string}
45
+ * @memberof WorkOrderSponsorDto
46
+ */
47
+ 'sponsorUserDeptName'?: string;
48
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,30 @@
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
+ * @interface WorkOrderSurveillanceDto
16
+ */
17
+ export interface WorkOrderSurveillanceDto {
18
+ /**
19
+ * 监控设备id
20
+ * @type {number}
21
+ * @memberof WorkOrderSurveillanceDto
22
+ */
23
+ 'surveillanceId'?: number;
24
+ /**
25
+ * 监控设备名称
26
+ * @type {string}
27
+ * @memberof WorkOrderSurveillanceDto
28
+ */
29
+ 'surveillanceName'?: string;
30
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -30,5 +30,6 @@ export declare const WorkOrderTypeEnum: {
30
30
  readonly GasMeterWorkOrder: "GAS_METER_WORK_ORDER";
31
31
  readonly VideoRecognitionAlarm: "VIDEO_RECOGNITION_ALARM";
32
32
  readonly AiInspection: "AI_INSPECTION";
33
+ readonly NetworkRepairWorkOrder: "NETWORK_REPAIR_WORK_ORDER";
33
34
  };
34
35
  export type WorkOrderTypeEnum = typeof WorkOrderTypeEnum[keyof typeof WorkOrderTypeEnum];
@@ -34,5 +34,6 @@ exports.WorkOrderTypeEnum = {
34
34
  WaterPurificationMeterWorkOrder: 'WATER_PURIFICATION_METER_WORK_ORDER',
35
35
  GasMeterWorkOrder: 'GAS_METER_WORK_ORDER',
36
36
  VideoRecognitionAlarm: 'VIDEO_RECOGNITION_ALARM',
37
- AiInspection: 'AI_INSPECTION'
37
+ AiInspection: 'AI_INSPECTION',
38
+ NetworkRepairWorkOrder: 'NETWORK_REPAIR_WORK_ORDER'
38
39
  };
@@ -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 FunctionalAreaEnum = {
24
+ Platform: 'PLATFORM',
25
+ StockingArea: 'STOCKING_AREA',
26
+ Passageway: 'PASSAGEWAY',
27
+ OfficeArea: 'OFFICE_AREA',
28
+ DefectiveProductIdentificationArea: 'DEFECTIVE_PRODUCT_IDENTIFICATION_AREA',
29
+ PackingTable: 'PACKING_TABLE',
30
+ Others: 'OTHERS'
31
+ } as const;
32
+
33
+ export type FunctionalAreaEnum = typeof FunctionalAreaEnum[keyof typeof FunctionalAreaEnum];
34
+
35
+
36
+
@@ -34,16 +34,16 @@ export interface GetUserWx200Response {
34
34
  'status'?: number;
35
35
  /**
36
36
  *
37
- * @type {Array<string>}
37
+ * @type {object}
38
38
  * @memberof GetUserWx200Response
39
39
  */
40
- 'headerNames'?: Array<string>;
40
+ 'trailerFields'?: object;
41
41
  /**
42
42
  *
43
- * @type {object}
43
+ * @type {Array<string>}
44
44
  * @memberof GetUserWx200Response
45
45
  */
46
- 'trailerFields'?: object;
46
+ 'headerNames'?: Array<string>;
47
47
  /**
48
48
  *
49
49
  * @type {GetUserWx200ResponseLocale}
package/models/index.ts CHANGED
@@ -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,32 @@
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 InstallationBodyEnum = {
24
+ RiRiShun: 'RI_RI_SHUN',
25
+ CangXiaoWei: 'CANG_XIAO_WEI',
26
+ FangDong: 'FANG_DONG'
27
+ } as const;
28
+
29
+ export type InstallationBodyEnum = typeof InstallationBodyEnum[keyof typeof InstallationBodyEnum];
30
+
31
+
32
+
@@ -31,22 +31,22 @@ export interface IPageAccessVO {
31
31
  'total'?: number;
32
32
  /**
33
33
  *
34
- * @type {number}
34
+ * @type {boolean}
35
35
  * @memberof IPageAccessVO
36
36
  */
37
- 'current'?: number;
37
+ 'searchCount'?: boolean;
38
38
  /**
39
39
  *
40
- * @type {Array<AccessVO>}
40
+ * @type {number}
41
41
  * @memberof IPageAccessVO
42
42
  */
43
- 'records'?: Array<AccessVO>;
43
+ 'current'?: number;
44
44
  /**
45
45
  *
46
- * @type {boolean}
46
+ * @type {Array<AccessVO>}
47
47
  * @memberof IPageAccessVO
48
48
  */
49
- 'searchCount'?: boolean;
49
+ 'records'?: Array<AccessVO>;
50
50
  /**
51
51
  *
52
52
  * @type {number}