@ningboyz/types 1.3.118 → 1.3.120
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
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
export interface IHznkFydwDeptResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
fydwIndx: number;
|
|
5
|
+
idEntity: number;
|
|
6
|
+
dataStat: number;
|
|
7
|
+
dataHide: number;
|
|
8
|
+
dataOrdr: number;
|
|
9
|
+
dataFrom: number;
|
|
10
|
+
dataType: number;
|
|
11
|
+
dataDate: number;
|
|
12
|
+
dataTime: number;
|
|
13
|
+
createBy: string;
|
|
14
|
+
createAt: number;
|
|
15
|
+
updateBy: string;
|
|
16
|
+
updateAt: number;
|
|
17
|
+
deleteBy: string;
|
|
18
|
+
deleteAt: number;
|
|
19
|
+
queuesBy: number;
|
|
20
|
+
deptMain: number;
|
|
21
|
+
deptName: string;
|
|
22
|
+
totalVal: number;
|
|
23
|
+
inputVal: number;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export class THznkFydwDeptResponse implements IHznkFydwDeptResponse {
|
|
27
|
+
whoBuild: number = 0;
|
|
28
|
+
userIndx: number = 0;
|
|
29
|
+
fydwIndx: number = 0;
|
|
30
|
+
idEntity: number = 0;
|
|
31
|
+
dataStat: number = 0;
|
|
32
|
+
dataHide: number = 0;
|
|
33
|
+
dataOrdr: number = 0;
|
|
34
|
+
dataFrom: number = 0;
|
|
35
|
+
dataType: number = 0;
|
|
36
|
+
dataDate: number = 0;
|
|
37
|
+
dataTime: number = 0;
|
|
38
|
+
createBy: string = "";
|
|
39
|
+
createAt: number = 0;
|
|
40
|
+
updateBy: string = "";
|
|
41
|
+
updateAt: number = 0;
|
|
42
|
+
deleteBy: string = "";
|
|
43
|
+
deleteAt: number = 0;
|
|
44
|
+
queuesBy: number = 0;
|
|
45
|
+
deptMain: number = 0;
|
|
46
|
+
deptName: string = "";
|
|
47
|
+
totalVal: number = 0;
|
|
48
|
+
inputVal: number = 0;
|
|
49
|
+
}
|
|
@@ -80,6 +80,8 @@ export interface IHznkFydwResponse {
|
|
|
80
80
|
listFrom: THznk.IHznkMainResponse[];
|
|
81
81
|
/**当年外拨经费 */
|
|
82
82
|
listWBDW: THznk.IHznkFydwWbdwResponse[];
|
|
83
|
+
/**部门赋分区 */
|
|
84
|
+
listDept: THznk.IHznkFydwDeptResponse[];
|
|
83
85
|
}
|
|
84
86
|
|
|
85
87
|
export class THznkFydwResponse implements IHznkFydwResponse {
|
|
@@ -127,7 +129,7 @@ export class THznkFydwResponse implements IHznkFydwResponse {
|
|
|
127
129
|
baseCode: string = "";
|
|
128
130
|
baseUses: string = "";
|
|
129
131
|
baseMemo: string = "";
|
|
130
|
-
|
|
132
|
+
|
|
131
133
|
coverURL: string = "";
|
|
132
134
|
touchURL: string = "";
|
|
133
135
|
unitText: string = "";
|
|
@@ -150,6 +152,7 @@ export class THznkFydwResponse implements IHznkFydwResponse {
|
|
|
150
152
|
listBill: THznk.IHznkFydwBillResponse[] = [];
|
|
151
153
|
listFrom: THznk.IHznkMainResponse[] = [];
|
|
152
154
|
listWBDW: THznk.IHznkFydwWbdwResponse[] = [];
|
|
155
|
+
listDept: THznk.IHznkFydwDeptResponse[] = [];
|
|
153
156
|
|
|
154
157
|
static toFlowDatas(card: IHznkFydwResponse[]): TFlowDataResponse[] {
|
|
155
158
|
return card.map((u) => this.toFlowData(u));
|
package/src/hznk/index.ts
CHANGED
|
@@ -18,6 +18,7 @@ import { IHznkFydwBillResponse, THznkFydwBillResponse } from "./IHznkFydwBillRes
|
|
|
18
18
|
import { IHznkFydwFromResponse, THznkFydwFromResponse } from "./IHznkFydwFromResponse";
|
|
19
19
|
import { IHznkFydwItemResponse, THznkFydwItemResponse } from "./IHznkFydwItemResponse";
|
|
20
20
|
import { IHznkFydwPathResponse, THznkFydwPathResponse } from "./IHznkFydwPathResponse";
|
|
21
|
+
import { IHznkFydwDeptResponse, THznkFydwDeptResponse } from "./IHznkFydwDeptResponse";
|
|
21
22
|
//#main
|
|
22
23
|
import { IHznkMainResponse, THznkMainResponse } from "./IHznkMainResponse";
|
|
23
24
|
import { IHznkMainWbdwResponse, THznkMainWbdwResponse } from "./IHznkMainWbdwResponse";
|
|
@@ -53,6 +54,7 @@ export {
|
|
|
53
54
|
THznkFydwFromResponse,
|
|
54
55
|
THznkFydwItemResponse,
|
|
55
56
|
THznkFydwPathResponse,
|
|
57
|
+
THznkFydwDeptResponse,
|
|
56
58
|
THznkFydwWbdwResponse,
|
|
57
59
|
THznkDataNbyhResponse,
|
|
58
60
|
THznkMainResponse,
|
|
@@ -83,6 +85,7 @@ export {
|
|
|
83
85
|
type IHznkFydwFromResponse,
|
|
84
86
|
type IHznkFydwItemResponse,
|
|
85
87
|
type IHznkFydwPathResponse,
|
|
88
|
+
type IHznkFydwDeptResponse,
|
|
86
89
|
type IHznkFydwWbdwResponse,
|
|
87
90
|
type IHznkDataNbyhResponse,
|
|
88
91
|
type IHznkMainResponse,
|
|
@@ -85,6 +85,7 @@ export interface IMyoaMainResponse {
|
|
|
85
85
|
yzhtMain: number;
|
|
86
86
|
autoType: number;
|
|
87
87
|
menuUUID: string;
|
|
88
|
+
menuName: string;
|
|
88
89
|
coverURL: string;
|
|
89
90
|
touchURL: string;
|
|
90
91
|
flowMain: number;
|
|
@@ -229,6 +230,7 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
|
|
|
229
230
|
myoaStat: number = 0;
|
|
230
231
|
myoaDate: number = 0;
|
|
231
232
|
menuUUID: string = "";
|
|
233
|
+
menuName: string = "";
|
|
232
234
|
unitMain: number = 0;
|
|
233
235
|
unitNamf: string = "";
|
|
234
236
|
deptMain: number = 0;
|