@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,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
|
+
|