@gizone/rrs-client 4.2.6-alpha.422 → 4.2.6-alpha.424
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.
- package/dist/esm/models/exploration-work-order-add-vo.d.ts +13 -0
- package/dist/esm/models/violation-work-order-add-vo.d.ts +6 -0
- package/dist/models/exploration-work-order-add-vo.d.ts +13 -0
- package/dist/models/violation-work-order-add-vo.d.ts +6 -0
- package/models/exploration-work-order-add-vo.ts +15 -0
- package/models/violation-work-order-add-vo.ts +6 -0
- package/package.json +1 -1
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { ExplorationWorkOrderTypeEnum } from './exploration-work-order-type-enum';
|
|
13
13
|
import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
|
|
14
|
+
import type { WorkOrderSourceEnum } from './work-order-source-enum';
|
|
14
15
|
/**
|
|
15
16
|
* 新增勘探工单
|
|
16
17
|
* @export
|
|
@@ -113,6 +114,18 @@ export interface ExplorationWorkOrderAddVo {
|
|
|
113
114
|
* @memberof ExplorationWorkOrderAddVo
|
|
114
115
|
*/
|
|
115
116
|
'handlerUserId'?: number;
|
|
117
|
+
/**
|
|
118
|
+
*
|
|
119
|
+
* @type {WorkOrderSourceEnum}
|
|
120
|
+
* @memberof ExplorationWorkOrderAddVo
|
|
121
|
+
*/
|
|
122
|
+
'workOrderSource'?: WorkOrderSourceEnum;
|
|
123
|
+
/**
|
|
124
|
+
* 来源ID
|
|
125
|
+
* @type {number}
|
|
126
|
+
* @memberof ExplorationWorkOrderAddVo
|
|
127
|
+
*/
|
|
128
|
+
'sourceId'?: number;
|
|
116
129
|
}
|
|
117
130
|
export declare const ExplorationWorkOrderAddVoHazardLevelEnum: {
|
|
118
131
|
readonly A: "A";
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { ExplorationWorkOrderTypeEnum } from './exploration-work-order-type-enum';
|
|
13
13
|
import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
|
|
14
|
+
import type { WorkOrderSourceEnum } from './work-order-source-enum';
|
|
14
15
|
/**
|
|
15
16
|
* 新增勘探工单
|
|
16
17
|
* @export
|
|
@@ -113,6 +114,18 @@ export interface ExplorationWorkOrderAddVo {
|
|
|
113
114
|
* @memberof ExplorationWorkOrderAddVo
|
|
114
115
|
*/
|
|
115
116
|
'handlerUserId'?: number;
|
|
117
|
+
/**
|
|
118
|
+
*
|
|
119
|
+
* @type {WorkOrderSourceEnum}
|
|
120
|
+
* @memberof ExplorationWorkOrderAddVo
|
|
121
|
+
*/
|
|
122
|
+
'workOrderSource'?: WorkOrderSourceEnum;
|
|
123
|
+
/**
|
|
124
|
+
* 来源ID
|
|
125
|
+
* @type {number}
|
|
126
|
+
* @memberof ExplorationWorkOrderAddVo
|
|
127
|
+
*/
|
|
128
|
+
'sourceId'?: number;
|
|
116
129
|
}
|
|
117
130
|
export declare const ExplorationWorkOrderAddVoHazardLevelEnum: {
|
|
118
131
|
readonly A: "A";
|
|
@@ -19,6 +19,9 @@ import type { ExplorationWorkOrderTypeEnum } from './exploration-work-order-type
|
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
21
|
import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import type { WorkOrderSourceEnum } from './work-order-source-enum';
|
|
22
25
|
|
|
23
26
|
/**
|
|
24
27
|
* 新增勘探工单
|
|
@@ -122,6 +125,18 @@ export interface ExplorationWorkOrderAddVo {
|
|
|
122
125
|
* @memberof ExplorationWorkOrderAddVo
|
|
123
126
|
*/
|
|
124
127
|
'handlerUserId'?: number;
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @type {WorkOrderSourceEnum}
|
|
131
|
+
* @memberof ExplorationWorkOrderAddVo
|
|
132
|
+
*/
|
|
133
|
+
'workOrderSource'?: WorkOrderSourceEnum;
|
|
134
|
+
/**
|
|
135
|
+
* 来源ID
|
|
136
|
+
* @type {number}
|
|
137
|
+
* @memberof ExplorationWorkOrderAddVo
|
|
138
|
+
*/
|
|
139
|
+
'sourceId'?: number;
|
|
125
140
|
}
|
|
126
141
|
|
|
127
142
|
export const ExplorationWorkOrderAddVoHazardLevelEnum = {
|
|
@@ -101,6 +101,12 @@ export interface ViolationWorkOrderAddVo {
|
|
|
101
101
|
* @memberof ViolationWorkOrderAddVo
|
|
102
102
|
*/
|
|
103
103
|
'estimateExecutionTime'?: number;
|
|
104
|
+
/**
|
|
105
|
+
* 来源ID
|
|
106
|
+
* @type {number}
|
|
107
|
+
* @memberof ViolationWorkOrderAddVo
|
|
108
|
+
*/
|
|
109
|
+
'sourceId'?: number;
|
|
104
110
|
}
|
|
105
111
|
|
|
106
112
|
|