@gizone/rrs-client 4.1.3-alpha.212 → 4.1.3-alpha.214
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/.openapi-generator/FILES +3 -0
- package/apis/setting-api.ts +192 -0
- package/apis/work-order-api.ts +192 -0
- package/dist/apis/setting-api.d.ts +102 -0
- package/dist/apis/setting-api.js +144 -0
- package/dist/apis/work-order-api.d.ts +102 -0
- package/dist/apis/work-order-api.js +144 -0
- package/dist/esm/apis/setting-api.d.ts +102 -0
- package/dist/esm/apis/setting-api.js +144 -0
- package/dist/esm/apis/work-order-api.d.ts +102 -0
- package/dist/esm/apis/work-order-api.js +144 -0
- package/dist/esm/models/index.d.ts +3 -0
- package/dist/esm/models/index.js +3 -0
- package/dist/esm/models/json-result-list-work-order-circulation-settings-entity.d.ts +62 -0
- package/dist/esm/models/json-result-list-work-order-circulation-settings-entity.js +14 -0
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/esm/models/work-order-circulation-settings-add-or-update-vo.d.ts +44 -0
- package/dist/esm/models/work-order-circulation-settings-add-or-update-vo.js +14 -0
- package/dist/esm/models/work-order-circulation-settings-entity.d.ts +68 -0
- package/dist/esm/models/work-order-circulation-settings-entity.js +14 -0
- package/dist/esm/models/work-order-internal-status-enum.d.ts +1 -1
- package/dist/esm/models/work-order-internal-status-enum.js +1 -1
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/models/json-result-list-work-order-circulation-settings-entity.d.ts +62 -0
- package/dist/models/json-result-list-work-order-circulation-settings-entity.js +15 -0
- package/dist/models/sys-user.d.ts +4 -4
- package/dist/models/work-order-circulation-settings-add-or-update-vo.d.ts +44 -0
- package/dist/models/work-order-circulation-settings-add-or-update-vo.js +15 -0
- package/dist/models/work-order-circulation-settings-entity.d.ts +68 -0
- package/dist/models/work-order-circulation-settings-entity.js +15 -0
- package/dist/models/work-order-internal-status-enum.d.ts +1 -1
- package/dist/models/work-order-internal-status-enum.js +1 -1
- package/models/index.ts +3 -0
- package/models/json-result-list-work-order-circulation-settings-entity.ts +72 -0
- package/models/sys-user.ts +4 -4
- package/models/work-order-circulation-settings-add-or-update-vo.ts +56 -0
- package/models/work-order-circulation-settings-entity.ts +80 -0
- package/models/work-order-internal-status-enum.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,44 @@
|
|
|
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 { WorkOrderInternalStatusEnum } from './work-order-internal-status-enum';
|
|
13
|
+
import type { WorkOrderTypeEnum } from './work-order-type-enum';
|
|
14
|
+
/**
|
|
15
|
+
* 工单流转设置添加或更新对象
|
|
16
|
+
* @export
|
|
17
|
+
* @interface WorkOrderCirculationSettingsAddOrUpdateVo
|
|
18
|
+
*/
|
|
19
|
+
export interface WorkOrderCirculationSettingsAddOrUpdateVo {
|
|
20
|
+
/**
|
|
21
|
+
* 数据ID
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof WorkOrderCirculationSettingsAddOrUpdateVo
|
|
24
|
+
*/
|
|
25
|
+
'id'?: number;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {WorkOrderTypeEnum}
|
|
29
|
+
* @memberof WorkOrderCirculationSettingsAddOrUpdateVo
|
|
30
|
+
*/
|
|
31
|
+
'workOrderType': WorkOrderTypeEnum;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {WorkOrderInternalStatusEnum}
|
|
35
|
+
* @memberof WorkOrderCirculationSettingsAddOrUpdateVo
|
|
36
|
+
*/
|
|
37
|
+
'workOrderInternalStatus': WorkOrderInternalStatusEnum;
|
|
38
|
+
/**
|
|
39
|
+
* 处理人
|
|
40
|
+
* @type {number}
|
|
41
|
+
* @memberof WorkOrderCirculationSettingsAddOrUpdateVo
|
|
42
|
+
*/
|
|
43
|
+
'handlerUserId': number;
|
|
44
|
+
}
|
|
@@ -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,68 @@
|
|
|
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 { WorkOrderInternalStatusEnum } from './work-order-internal-status-enum';
|
|
13
|
+
import type { WorkOrderTypeEnum } from './work-order-type-enum';
|
|
14
|
+
/**
|
|
15
|
+
* 返回数据,可以是任意类型的值
|
|
16
|
+
* @export
|
|
17
|
+
* @interface WorkOrderCirculationSettingsEntity
|
|
18
|
+
*/
|
|
19
|
+
export interface WorkOrderCirculationSettingsEntity {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
24
|
+
*/
|
|
25
|
+
'id'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 园区ID
|
|
28
|
+
* @type {number}
|
|
29
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
30
|
+
*/
|
|
31
|
+
'parkId'?: number;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {WorkOrderTypeEnum}
|
|
35
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
36
|
+
*/
|
|
37
|
+
'workOrderType'?: WorkOrderTypeEnum;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {WorkOrderInternalStatusEnum}
|
|
41
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
42
|
+
*/
|
|
43
|
+
'workOrderInternalStatus'?: WorkOrderInternalStatusEnum;
|
|
44
|
+
/**
|
|
45
|
+
* 流转处理人
|
|
46
|
+
* @type {number}
|
|
47
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
48
|
+
*/
|
|
49
|
+
'handlerUserId'?: number;
|
|
50
|
+
/**
|
|
51
|
+
* 是否删除 1 未删除 0 删除
|
|
52
|
+
* @type {number}
|
|
53
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
54
|
+
*/
|
|
55
|
+
'isDelete'?: number;
|
|
56
|
+
/**
|
|
57
|
+
* 创建时间
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
60
|
+
*/
|
|
61
|
+
'createTime'?: string;
|
|
62
|
+
/**
|
|
63
|
+
* 修改时间
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
66
|
+
*/
|
|
67
|
+
'updateTime'?: string;
|
|
68
|
+
}
|
|
@@ -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 {};
|
package/dist/models/index.d.ts
CHANGED
|
@@ -460,6 +460,7 @@ export * from './json-result-list-sys-dept';
|
|
|
460
460
|
export * from './json-result-list-sys-dept-drop-down-box-list-dto';
|
|
461
461
|
export * from './json-result-list-sys-user-drop-down-box-list-dto';
|
|
462
462
|
export * from './json-result-list-unloading-area-entity';
|
|
463
|
+
export * from './json-result-list-work-order-circulation-settings-entity';
|
|
463
464
|
export * from './json-result-list-work-order-circulation-vo';
|
|
464
465
|
export * from './json-result-list-work-order-comment-entity';
|
|
465
466
|
export * from './json-result-list-work-order-dept-settings-entity';
|
|
@@ -880,6 +881,8 @@ export * from './white-edit-vo';
|
|
|
880
881
|
export * from './white-search-vo';
|
|
881
882
|
export * from './work-order-add-vo';
|
|
882
883
|
export * from './work-order-approval-vo';
|
|
884
|
+
export * from './work-order-circulation-settings-add-or-update-vo';
|
|
885
|
+
export * from './work-order-circulation-settings-entity';
|
|
883
886
|
export * from './work-order-circulation-vo';
|
|
884
887
|
export * from './work-order-comment-dto';
|
|
885
888
|
export * from './work-order-comment-entity';
|
package/dist/models/index.js
CHANGED
|
@@ -476,6 +476,7 @@ __exportStar(require("./json-result-list-sys-dept"), exports);
|
|
|
476
476
|
__exportStar(require("./json-result-list-sys-dept-drop-down-box-list-dto"), exports);
|
|
477
477
|
__exportStar(require("./json-result-list-sys-user-drop-down-box-list-dto"), exports);
|
|
478
478
|
__exportStar(require("./json-result-list-unloading-area-entity"), exports);
|
|
479
|
+
__exportStar(require("./json-result-list-work-order-circulation-settings-entity"), exports);
|
|
479
480
|
__exportStar(require("./json-result-list-work-order-circulation-vo"), exports);
|
|
480
481
|
__exportStar(require("./json-result-list-work-order-comment-entity"), exports);
|
|
481
482
|
__exportStar(require("./json-result-list-work-order-dept-settings-entity"), exports);
|
|
@@ -896,6 +897,8 @@ __exportStar(require("./white-edit-vo"), exports);
|
|
|
896
897
|
__exportStar(require("./white-search-vo"), exports);
|
|
897
898
|
__exportStar(require("./work-order-add-vo"), exports);
|
|
898
899
|
__exportStar(require("./work-order-approval-vo"), exports);
|
|
900
|
+
__exportStar(require("./work-order-circulation-settings-add-or-update-vo"), exports);
|
|
901
|
+
__exportStar(require("./work-order-circulation-settings-entity"), exports);
|
|
899
902
|
__exportStar(require("./work-order-circulation-vo"), exports);
|
|
900
903
|
__exportStar(require("./work-order-comment-dto"), exports);
|
|
901
904
|
__exportStar(require("./work-order-comment-entity"), exports);
|
|
@@ -0,0 +1,62 @@
|
|
|
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 { WorkOrderCirculationSettingsEntity } from './work-order-circulation-settings-entity';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultListWorkOrderCirculationSettingsEntity
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultListWorkOrderCirculationSettingsEntity {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultListWorkOrderCirculationSettingsEntity
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultListWorkOrderCirculationSettingsEntity
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultListWorkOrderCirculationSettingsEntity
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* 返回数据,可以是任意类型的值
|
|
40
|
+
* @type {Array<WorkOrderCirculationSettingsEntity>}
|
|
41
|
+
* @memberof JsonResultListWorkOrderCirculationSettingsEntity
|
|
42
|
+
*/
|
|
43
|
+
'data'?: Array<WorkOrderCirculationSettingsEntity> | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultListWorkOrderCirculationSettingsEntity
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultListWorkOrderCirculationSettingsEntity
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultListWorkOrderCirculationSettingsEntity
|
|
60
|
+
*/
|
|
61
|
+
'requestId'?: string | null;
|
|
62
|
+
}
|
|
@@ -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 });
|
|
@@ -363,14 +363,14 @@ export interface SysUser {
|
|
|
363
363
|
'userNo'?: string;
|
|
364
364
|
/**
|
|
365
365
|
*
|
|
366
|
-
* @type {
|
|
366
|
+
* @type {string}
|
|
367
367
|
* @memberof SysUser
|
|
368
368
|
*/
|
|
369
|
-
'
|
|
369
|
+
'cid'?: string;
|
|
370
370
|
/**
|
|
371
371
|
*
|
|
372
|
-
* @type {
|
|
372
|
+
* @type {number}
|
|
373
373
|
* @memberof SysUser
|
|
374
374
|
*/
|
|
375
|
-
'
|
|
375
|
+
'cuserId'?: number;
|
|
376
376
|
}
|
|
@@ -0,0 +1,44 @@
|
|
|
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 { WorkOrderInternalStatusEnum } from './work-order-internal-status-enum';
|
|
13
|
+
import type { WorkOrderTypeEnum } from './work-order-type-enum';
|
|
14
|
+
/**
|
|
15
|
+
* 工单流转设置添加或更新对象
|
|
16
|
+
* @export
|
|
17
|
+
* @interface WorkOrderCirculationSettingsAddOrUpdateVo
|
|
18
|
+
*/
|
|
19
|
+
export interface WorkOrderCirculationSettingsAddOrUpdateVo {
|
|
20
|
+
/**
|
|
21
|
+
* 数据ID
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof WorkOrderCirculationSettingsAddOrUpdateVo
|
|
24
|
+
*/
|
|
25
|
+
'id'?: number;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {WorkOrderTypeEnum}
|
|
29
|
+
* @memberof WorkOrderCirculationSettingsAddOrUpdateVo
|
|
30
|
+
*/
|
|
31
|
+
'workOrderType': WorkOrderTypeEnum;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {WorkOrderInternalStatusEnum}
|
|
35
|
+
* @memberof WorkOrderCirculationSettingsAddOrUpdateVo
|
|
36
|
+
*/
|
|
37
|
+
'workOrderInternalStatus': WorkOrderInternalStatusEnum;
|
|
38
|
+
/**
|
|
39
|
+
* 处理人
|
|
40
|
+
* @type {number}
|
|
41
|
+
* @memberof WorkOrderCirculationSettingsAddOrUpdateVo
|
|
42
|
+
*/
|
|
43
|
+
'handlerUserId': number;
|
|
44
|
+
}
|
|
@@ -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,68 @@
|
|
|
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 { WorkOrderInternalStatusEnum } from './work-order-internal-status-enum';
|
|
13
|
+
import type { WorkOrderTypeEnum } from './work-order-type-enum';
|
|
14
|
+
/**
|
|
15
|
+
* 返回数据,可以是任意类型的值
|
|
16
|
+
* @export
|
|
17
|
+
* @interface WorkOrderCirculationSettingsEntity
|
|
18
|
+
*/
|
|
19
|
+
export interface WorkOrderCirculationSettingsEntity {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
24
|
+
*/
|
|
25
|
+
'id'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 园区ID
|
|
28
|
+
* @type {number}
|
|
29
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
30
|
+
*/
|
|
31
|
+
'parkId'?: number;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {WorkOrderTypeEnum}
|
|
35
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
36
|
+
*/
|
|
37
|
+
'workOrderType'?: WorkOrderTypeEnum;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {WorkOrderInternalStatusEnum}
|
|
41
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
42
|
+
*/
|
|
43
|
+
'workOrderInternalStatus'?: WorkOrderInternalStatusEnum;
|
|
44
|
+
/**
|
|
45
|
+
* 流转处理人
|
|
46
|
+
* @type {number}
|
|
47
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
48
|
+
*/
|
|
49
|
+
'handlerUserId'?: number;
|
|
50
|
+
/**
|
|
51
|
+
* 是否删除 1 未删除 0 删除
|
|
52
|
+
* @type {number}
|
|
53
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
54
|
+
*/
|
|
55
|
+
'isDelete'?: number;
|
|
56
|
+
/**
|
|
57
|
+
* 创建时间
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
60
|
+
*/
|
|
61
|
+
'createTime'?: string;
|
|
62
|
+
/**
|
|
63
|
+
* 修改时间
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
66
|
+
*/
|
|
67
|
+
'updateTime'?: string;
|
|
68
|
+
}
|
|
@@ -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 });
|
package/models/index.ts
CHANGED
|
@@ -460,6 +460,7 @@ export * from './json-result-list-sys-dept';
|
|
|
460
460
|
export * from './json-result-list-sys-dept-drop-down-box-list-dto';
|
|
461
461
|
export * from './json-result-list-sys-user-drop-down-box-list-dto';
|
|
462
462
|
export * from './json-result-list-unloading-area-entity';
|
|
463
|
+
export * from './json-result-list-work-order-circulation-settings-entity';
|
|
463
464
|
export * from './json-result-list-work-order-circulation-vo';
|
|
464
465
|
export * from './json-result-list-work-order-comment-entity';
|
|
465
466
|
export * from './json-result-list-work-order-dept-settings-entity';
|
|
@@ -880,6 +881,8 @@ export * from './white-edit-vo';
|
|
|
880
881
|
export * from './white-search-vo';
|
|
881
882
|
export * from './work-order-add-vo';
|
|
882
883
|
export * from './work-order-approval-vo';
|
|
884
|
+
export * from './work-order-circulation-settings-add-or-update-vo';
|
|
885
|
+
export * from './work-order-circulation-settings-entity';
|
|
883
886
|
export * from './work-order-circulation-vo';
|
|
884
887
|
export * from './work-order-comment-dto';
|
|
885
888
|
export * from './work-order-comment-entity';
|
|
@@ -0,0 +1,72 @@
|
|
|
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 { BaseErrorResult } from './base-error-result';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { WorkOrderCirculationSettingsEntity } from './work-order-circulation-settings-entity';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface JsonResultListWorkOrderCirculationSettingsEntity
|
|
27
|
+
*/
|
|
28
|
+
export interface JsonResultListWorkOrderCirculationSettingsEntity {
|
|
29
|
+
/**
|
|
30
|
+
* 错误码,0:成功,其他:失败
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof JsonResultListWorkOrderCirculationSettingsEntity
|
|
33
|
+
*/
|
|
34
|
+
'code'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 错误消息
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof JsonResultListWorkOrderCirculationSettingsEntity
|
|
39
|
+
*/
|
|
40
|
+
'msg'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 错误堆栈
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof JsonResultListWorkOrderCirculationSettingsEntity
|
|
45
|
+
*/
|
|
46
|
+
'stacks'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* 返回数据,可以是任意类型的值
|
|
49
|
+
* @type {Array<WorkOrderCirculationSettingsEntity>}
|
|
50
|
+
* @memberof JsonResultListWorkOrderCirculationSettingsEntity
|
|
51
|
+
*/
|
|
52
|
+
'data'?: Array<WorkOrderCirculationSettingsEntity> | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {BaseErrorResult}
|
|
56
|
+
* @memberof JsonResultListWorkOrderCirculationSettingsEntity
|
|
57
|
+
*/
|
|
58
|
+
'error'?: BaseErrorResult | null;
|
|
59
|
+
/**
|
|
60
|
+
* 日志追踪ID
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof JsonResultListWorkOrderCirculationSettingsEntity
|
|
63
|
+
*/
|
|
64
|
+
'traceId'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* requestId
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof JsonResultListWorkOrderCirculationSettingsEntity
|
|
69
|
+
*/
|
|
70
|
+
'requestId'?: string | null;
|
|
71
|
+
}
|
|
72
|
+
|
package/models/sys-user.ts
CHANGED
|
@@ -370,15 +370,15 @@ export interface SysUser {
|
|
|
370
370
|
'userNo'?: string;
|
|
371
371
|
/**
|
|
372
372
|
*
|
|
373
|
-
* @type {
|
|
373
|
+
* @type {string}
|
|
374
374
|
* @memberof SysUser
|
|
375
375
|
*/
|
|
376
|
-
'
|
|
376
|
+
'cid'?: string;
|
|
377
377
|
/**
|
|
378
378
|
*
|
|
379
|
-
* @type {
|
|
379
|
+
* @type {number}
|
|
380
380
|
* @memberof SysUser
|
|
381
381
|
*/
|
|
382
|
-
'
|
|
382
|
+
'cuserId'?: number;
|
|
383
383
|
}
|
|
384
384
|
|
|
@@ -0,0 +1,56 @@
|
|
|
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 { WorkOrderInternalStatusEnum } from './work-order-internal-status-enum';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { WorkOrderTypeEnum } from './work-order-type-enum';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* 工单流转设置添加或更新对象
|
|
25
|
+
* @export
|
|
26
|
+
* @interface WorkOrderCirculationSettingsAddOrUpdateVo
|
|
27
|
+
*/
|
|
28
|
+
export interface WorkOrderCirculationSettingsAddOrUpdateVo {
|
|
29
|
+
/**
|
|
30
|
+
* 数据ID
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof WorkOrderCirculationSettingsAddOrUpdateVo
|
|
33
|
+
*/
|
|
34
|
+
'id'?: number;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {WorkOrderTypeEnum}
|
|
38
|
+
* @memberof WorkOrderCirculationSettingsAddOrUpdateVo
|
|
39
|
+
*/
|
|
40
|
+
'workOrderType': WorkOrderTypeEnum;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {WorkOrderInternalStatusEnum}
|
|
44
|
+
* @memberof WorkOrderCirculationSettingsAddOrUpdateVo
|
|
45
|
+
*/
|
|
46
|
+
'workOrderInternalStatus': WorkOrderInternalStatusEnum;
|
|
47
|
+
/**
|
|
48
|
+
* 处理人
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof WorkOrderCirculationSettingsAddOrUpdateVo
|
|
51
|
+
*/
|
|
52
|
+
'handlerUserId': number;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|