@ningboyz/types 1.4.164 → 1.4.166
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/package.json
CHANGED
|
@@ -100,6 +100,7 @@ export const CONST_SYS_TYPEU_EXPD_CCSP_CCQX = "出差-出差情形";
|
|
|
100
100
|
export const CONST_SYS_TYPEU_YZCQ_CTLX = "抽签-重投类型";
|
|
101
101
|
export const CONST_SYS_TYPEU_CLGL_DLLX = "车辆管理-动力类型";
|
|
102
102
|
export const CONST_SYS_TYPEU_CLGL_QDFS = "车辆管理-取得方式";
|
|
103
|
+
export const CONST_SYS_TYPEU_HYS_SYZT = "会议室-使用状态";
|
|
103
104
|
export const CONST_SYS_TYPEU_ZFQD = "支付渠道";
|
|
104
105
|
|
|
105
106
|
export const CONST_SYS_TYPEU_ZBGL_ZBFL = "装备管理-装备分类";
|
package/src/const/index.ts
CHANGED
|
@@ -32,6 +32,7 @@ import * as Vary from "./const_vary";
|
|
|
32
32
|
import * as ErrorKey from "./const_error_key";
|
|
33
33
|
import * as PageMode from "./const_page_mode";
|
|
34
34
|
import * as Read from "./const_read";
|
|
35
|
+
import * as Hznk from "./const_hznk";
|
|
35
36
|
|
|
36
37
|
export {
|
|
37
38
|
Align,
|
|
@@ -65,7 +66,8 @@ export {
|
|
|
65
66
|
Vary,
|
|
66
67
|
ErrorKey,
|
|
67
68
|
PageMode,
|
|
68
|
-
Read
|
|
69
|
+
Read,
|
|
70
|
+
Hznk
|
|
69
71
|
};
|
|
70
72
|
|
|
71
73
|
export type ModuleType = (typeof ConstModuleType)[keyof typeof ConstModuleType];
|
|
@@ -12,7 +12,7 @@ export interface pathTypeControl {
|
|
|
12
12
|
/** 是否可以拍摄上传附件 */
|
|
13
13
|
camera: boolean;
|
|
14
14
|
}
|
|
15
|
-
export interface
|
|
15
|
+
export interface IFlowNodeResponseNodeParaWithMYOA {
|
|
16
16
|
flowMain: number;
|
|
17
17
|
nodeIndx: number;
|
|
18
18
|
set4CardWhenReal: number;
|
|
@@ -20,7 +20,7 @@ export interface TFlowNodeResponseNodeParaWithMYOA {
|
|
|
20
20
|
whoBuild:number
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
export class TFlowNodeResponseNodeParaWithMYOA implements
|
|
23
|
+
export class TFlowNodeResponseNodeParaWithMYOA implements IFlowNodeResponseNodeParaWithMYOA {
|
|
24
24
|
flowMain: number = 0;
|
|
25
25
|
nodeIndx: number = 0;
|
|
26
26
|
set4CardWhenReal: number = 0;
|
package/src/flow/index.ts
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
import { IFlowDutyResponse, TFlowDutyResponse } from "./IFlowDutyResponse";
|
|
2
2
|
import { IFlowMainResponse, TFlowMainResponse } from "./IFlowMainResponse";
|
|
3
|
-
import {
|
|
3
|
+
import {
|
|
4
|
+
IFlowNodeResponse,
|
|
5
|
+
IFlowNodeResponseNodeParaWithMYOA,
|
|
6
|
+
pathTypeControl,
|
|
7
|
+
IFlowNodeResponseNodePara,
|
|
8
|
+
TFlowNodeResponse,
|
|
9
|
+
TFlowNodeResponseNodePara,
|
|
10
|
+
TFlowNodeResponseNodeParaWithMYOA
|
|
11
|
+
} from "./IFlowNodeResponse";
|
|
4
12
|
import { IFlowVoidResponse, TFlowVoidResponse } from "./IFlowVoidResponse";
|
|
5
13
|
import { IFlowTypeResponse, TFlowTypeResponse } from "./IFlowTypeResponse";
|
|
6
14
|
import { IFlowCnfgResponse, TFlowCnfgResponse } from "./IFlowCnfgResponse";
|
|
@@ -18,11 +26,16 @@ export {
|
|
|
18
26
|
type IFlowUservoidResponse,
|
|
19
27
|
type IFlowVoidResponse,
|
|
20
28
|
type IFlowBillResponse,
|
|
29
|
+
type pathTypeControl,
|
|
30
|
+
type IFlowNodeResponseNodeParaWithMYOA,
|
|
31
|
+
type IFlowNodeResponseNodePara,
|
|
21
32
|
TFlowCnfgResponse,
|
|
22
33
|
TFlowDataResponse,
|
|
23
34
|
TFlowDutyResponse,
|
|
24
35
|
TFlowMainResponse,
|
|
25
36
|
TFlowNodeResponse,
|
|
37
|
+
TFlowNodeResponseNodeParaWithMYOA,
|
|
38
|
+
TFlowNodeResponseNodePara,
|
|
26
39
|
TFlowTypeResponse,
|
|
27
40
|
TFlowUservoidResponse,
|
|
28
41
|
TFlowVoidResponse,
|
|
@@ -40,6 +40,10 @@ export interface IMyoaRoomResponse {
|
|
|
40
40
|
mobileID: string;
|
|
41
41
|
interVal: number;
|
|
42
42
|
|
|
43
|
+
// 车辆状态-字典
|
|
44
|
+
dictName: string;
|
|
45
|
+
dictMain: number;
|
|
46
|
+
|
|
43
47
|
fromCanClose: number;
|
|
44
48
|
}
|
|
45
49
|
|
|
@@ -94,6 +98,9 @@ export class TMyoaRoomResponse implements IMyoaRoomResponse {
|
|
|
94
98
|
/** 间歇时间(分钟) */
|
|
95
99
|
interVal: number = 0;
|
|
96
100
|
|
|
101
|
+
dictName: string = "";
|
|
102
|
+
dictMain: number = 0;
|
|
103
|
+
|
|
97
104
|
/**会议室状态 */
|
|
98
105
|
fromCanClose: number = 0;
|
|
99
106
|
}
|