@gizone/rrs-client 4.1.3-alpha.213 → 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/get-user-wx200-response.d.ts +14 -14
- package/dist/esm/models/index.d.ts +3 -0
- package/dist/esm/models/index.js +3 -0
- package/dist/esm/models/ipage-access-vo.d.ts +6 -6
- 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/get-user-wx200-response.d.ts +14 -14
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/models/ipage-access-vo.d.ts +6 -6
- 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/get-user-wx200-response.ts +14 -14
- package/models/index.ts +3 -0
- package/models/ipage-access-vo.ts +6 -6
- 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,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
|
+
|
|
@@ -0,0 +1,80 @@
|
|
|
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 WorkOrderCirculationSettingsEntity
|
|
27
|
+
*/
|
|
28
|
+
export interface WorkOrderCirculationSettingsEntity {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
33
|
+
*/
|
|
34
|
+
'id'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 园区ID
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
39
|
+
*/
|
|
40
|
+
'parkId'?: number;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {WorkOrderTypeEnum}
|
|
44
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
45
|
+
*/
|
|
46
|
+
'workOrderType'?: WorkOrderTypeEnum;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {WorkOrderInternalStatusEnum}
|
|
50
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
51
|
+
*/
|
|
52
|
+
'workOrderInternalStatus'?: WorkOrderInternalStatusEnum;
|
|
53
|
+
/**
|
|
54
|
+
* 流转处理人
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
57
|
+
*/
|
|
58
|
+
'handlerUserId'?: number;
|
|
59
|
+
/**
|
|
60
|
+
* 是否删除 1 未删除 0 删除
|
|
61
|
+
* @type {number}
|
|
62
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
63
|
+
*/
|
|
64
|
+
'isDelete'?: number;
|
|
65
|
+
/**
|
|
66
|
+
* 创建时间
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
69
|
+
*/
|
|
70
|
+
'createTime'?: string;
|
|
71
|
+
/**
|
|
72
|
+
* 修改时间
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof WorkOrderCirculationSettingsEntity
|
|
75
|
+
*/
|
|
76
|
+
'updateTime'?: string;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|