@ningboyz/types 1.1.70 → 1.1.72
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
|
@@ -5,18 +5,30 @@ import type { IGzjgGzlmLandResponse } from "./IGzjgGzlmLandResponse";
|
|
|
5
5
|
import type { IGzjgGzlmResponse } from "./IGzjgGzlmResponse";
|
|
6
6
|
import type { IGzjgQzgsResponse } from "./IGzjgQzgsResponse";
|
|
7
7
|
|
|
8
|
-
export interface
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
8
|
+
export interface ICompare {
|
|
9
|
+
[key: string]: number;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export interface IGzjgMainResponseGzjgPara {
|
|
13
|
+
col: number;
|
|
14
|
+
labelWidth: number;
|
|
15
|
+
titleAlign: "left" | "center" | "right" | "" | null;
|
|
16
|
+
titleColon: boolean;
|
|
17
|
+
|
|
18
|
+
typeMain: number;
|
|
19
|
+
typeName: string;
|
|
20
|
+
compare: ICompare;
|
|
21
|
+
}
|
|
14
22
|
|
|
15
23
|
export class TGzjgMainResponseGzjgPara implements IGzjgMainResponseGzjgPara {
|
|
16
24
|
col: number = 0;
|
|
17
25
|
labelWidth: number = 0;
|
|
18
26
|
titleAlign: "left" | "center" | "right" | "" | null = "left";
|
|
19
27
|
titleColon: boolean = false;
|
|
28
|
+
|
|
29
|
+
typeMain: number = 0;
|
|
30
|
+
typeName: string = "";
|
|
31
|
+
compare: ICompare = {};
|
|
20
32
|
}
|
|
21
33
|
|
|
22
34
|
// #工资结构
|
|
@@ -28,7 +28,7 @@ export interface IYzhtMainResponse {
|
|
|
28
28
|
updateAt: number;
|
|
29
29
|
deleteBy: string;
|
|
30
30
|
deleteAt: number;
|
|
31
|
-
|
|
31
|
+
billSize: number; //支付期数
|
|
32
32
|
queuesBy: number;
|
|
33
33
|
entityID: string;
|
|
34
34
|
|
|
@@ -219,7 +219,7 @@ export class TYzhtMainResponse implements IYzhtMainResponse {
|
|
|
219
219
|
dataLevl: number = 0;
|
|
220
220
|
dataFrom: number = 0;
|
|
221
221
|
kjndKJQJ: number = 0;
|
|
222
|
-
|
|
222
|
+
billSize: number = 0;
|
|
223
223
|
dataStat: number = 1;
|
|
224
224
|
dataOrdr: number = 0;
|
|
225
225
|
dataHide: number = 0;
|