@ningboyz/types 1.0.65 → 1.0.66
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
|
@@ -251,6 +251,10 @@ export class TNotiMainResponse implements INotiMainResponse {
|
|
|
251
251
|
}
|
|
252
252
|
}
|
|
253
253
|
|
|
254
|
+
static toFlowDatas(card: TNotiMainResponse[]): TFlowDataResponse[] {
|
|
255
|
+
return card.map((u) => this.toFlowData(u));
|
|
256
|
+
}
|
|
257
|
+
|
|
254
258
|
static toFlowData(aNoti: TNotiMainResponse): TFlowDataResponse {
|
|
255
259
|
const result = new TFlowDataResponse();
|
|
256
260
|
result.whoBuild = aNoti.whoBuild;
|
|
@@ -4,6 +4,8 @@ export interface IPzptGlfaResponse {
|
|
|
4
4
|
sourceND: number;
|
|
5
5
|
sourceID: number;
|
|
6
6
|
glfaIndx: number;
|
|
7
|
+
glfaMain: number;
|
|
8
|
+
|
|
7
9
|
parentID: number;
|
|
8
10
|
hashCode: number;
|
|
9
11
|
dataLevl: number;
|
|
@@ -38,11 +40,15 @@ export interface IPzptGlfaResponse {
|
|
|
38
40
|
export class TPzptGlfaResponse implements IPzptGlfaResponse {
|
|
39
41
|
whoBuild: number = 0;
|
|
40
42
|
userIndx: number = 0;
|
|
43
|
+
/** 核算年度 */
|
|
41
44
|
sourceND: number = 0;
|
|
42
45
|
/** 核算账套 */
|
|
43
46
|
sourceID: number = 0;
|
|
44
47
|
/** 关联方案 */
|
|
45
48
|
glfaIndx: number = 0;
|
|
49
|
+
/** 关联方案:虚拟字段,与glfaIndx同值 */
|
|
50
|
+
glfaMain: number = 0;
|
|
51
|
+
|
|
46
52
|
parentID: number = 0;
|
|
47
53
|
hashCode: number = 0;
|
|
48
54
|
dataLevl: number = 0;
|
|
@@ -69,6 +75,8 @@ export class TPzptGlfaResponse implements IPzptGlfaResponse {
|
|
|
69
75
|
glkmFrom: number = 0;
|
|
70
76
|
typeText: string = "";
|
|
71
77
|
fromText: string = "";
|
|
78
|
+
|
|
79
|
+
/** 方案名称 */
|
|
72
80
|
glfaName: string = "";
|
|
73
81
|
k8kmKmcd: string = "";
|
|
74
82
|
sourceDb: string = "";
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import { IPzptGlkmzdResponse } from "./IPzptGlkmzdResponse";
|
|
2
|
+
import { IPzptGlkmfdResponse } from "./IPzptGlkmfdResponse";
|
|
3
|
+
|
|
1
4
|
export interface IPzptGlkmResponse {
|
|
2
5
|
whoBuild: number;
|
|
3
6
|
userIndx: number;
|
|
@@ -21,19 +24,24 @@ export interface IPzptGlkmResponse {
|
|
|
21
24
|
glkmYefx: string;
|
|
22
25
|
glkmMemo: string;
|
|
23
26
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
27
|
+
/** 左侧科目 */
|
|
28
|
+
listGLZD: IPzptGlkmzdResponse[];
|
|
29
|
+
/** 右侧科目 */
|
|
30
|
+
listGLFD: IPzptGlkmfdResponse[];
|
|
31
|
+
|
|
32
|
+
/** 科目标识(左) */
|
|
33
|
+
cwkmKmid: number;
|
|
34
|
+
/** 科目编码(左) */
|
|
35
|
+
cwkmKmbm: string;
|
|
36
|
+
/** 科目名称(左) */
|
|
37
|
+
cwkmKmmc: string;
|
|
38
|
+
|
|
39
|
+
/** 科目标识(右) */
|
|
40
|
+
yskmKmid: number;
|
|
41
|
+
/** 科目编码(右) */
|
|
42
|
+
yskmKmbm: string;
|
|
43
|
+
/** 科目名称(右) */
|
|
44
|
+
yskmKmmc: string;
|
|
37
45
|
}
|
|
38
46
|
|
|
39
47
|
export class TPzptGlkmResponse implements IPzptGlkmResponse {
|
|
@@ -59,17 +67,22 @@ export class TPzptGlkmResponse implements IPzptGlkmResponse {
|
|
|
59
67
|
glkmYefx: string = "";
|
|
60
68
|
glkmMemo: string = "";
|
|
61
69
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
70
|
+
/** 左侧科目 */
|
|
71
|
+
listGLZD: IPzptGlkmzdResponse[] = [];
|
|
72
|
+
/** 右侧科目 */
|
|
73
|
+
listGLFD: IPzptGlkmfdResponse[] = [];
|
|
74
|
+
|
|
75
|
+
/** 科目标识(左) */
|
|
76
|
+
cwkmKmid: number = 0;
|
|
77
|
+
/** 科目编码(左) */
|
|
78
|
+
cwkmKmbm: string = "";
|
|
79
|
+
/** 科目名称(左) */
|
|
80
|
+
cwkmKmmc: string = "";
|
|
81
|
+
|
|
82
|
+
/** 科目标识(右) */
|
|
83
|
+
yskmKmid: number = 0;
|
|
84
|
+
/** 科目编码(右) */
|
|
85
|
+
yskmKmbm: string = "";
|
|
86
|
+
/** 科目名称(右) */
|
|
87
|
+
yskmKmmc: string = "";
|
|
75
88
|
}
|