@ningboyz/types 1.6.182 → 1.6.183
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
|
@@ -38,7 +38,8 @@ export interface IGzjgMainResponse {
|
|
|
38
38
|
gzjgCode: string;
|
|
39
39
|
gzjgName: string;
|
|
40
40
|
gzjgMemo: string;
|
|
41
|
-
tablType: number;
|
|
41
|
+
tablType: number; //#填报模式
|
|
42
|
+
gzjgType: number; //#发放周期
|
|
42
43
|
colLevel: number;
|
|
43
44
|
colStart: number;
|
|
44
45
|
colCount: number;
|
|
@@ -96,6 +97,7 @@ export interface IGzjgMainResponse {
|
|
|
96
97
|
|
|
97
98
|
usesItemWhenPzpt: number; //#启用辅助核算
|
|
98
99
|
useEqualWhenPzpt: number; //#启用平衡检查
|
|
100
|
+
usesFromCrossUnt: number; //#允许跨单位特殊人员
|
|
99
101
|
|
|
100
102
|
acnoType:number;
|
|
101
103
|
acnoTypeText:string;
|
|
@@ -152,6 +154,7 @@ export class TGzjgMainResponse implements IGzjgMainResponse {
|
|
|
152
154
|
gzjgName: string = "";
|
|
153
155
|
gzjgMemo: string = "";
|
|
154
156
|
tablType: number = 0;
|
|
157
|
+
gzjgType: number = 0;
|
|
155
158
|
colLevel: number = 0;
|
|
156
159
|
colStart: number = 0;
|
|
157
160
|
colCount: number = 0;
|
|
@@ -214,6 +217,7 @@ export class TGzjgMainResponse implements IGzjgMainResponse {
|
|
|
214
217
|
|
|
215
218
|
usesItemWhenPzpt: number = 0;
|
|
216
219
|
useEqualWhenPzpt: number = 0;
|
|
220
|
+
usesFromCrossUnt: number = 0;
|
|
217
221
|
|
|
218
222
|
userType: IDictResponse[] = [];
|
|
219
223
|
pathType: IDictResponse[] = [];
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { IDictResponse } from "../core/IDictResponse";
|
|
1
2
|
import { IPartResponse } from "../core/IPartResponse";
|
|
2
3
|
import { IGzjgGzlmResponse } from "../gzjg/IGzjgGzlmResponse";
|
|
3
4
|
import { IGzjgMainResponse } from "../gzjg/IGzjgMainResponse";
|
|
@@ -57,8 +58,16 @@ export interface ITaskMainResponse {
|
|
|
57
58
|
listGZJG: IGzjgMainResponse[];
|
|
58
59
|
listGZLM: IGzjgGzlmResponse[];
|
|
59
60
|
gzlmLock: IGzjgGzlmResponse[];
|
|
61
|
+
|
|
60
62
|
userPart: IPartResponse[];
|
|
61
63
|
readPart: IPartResponse[];
|
|
64
|
+
|
|
65
|
+
/** 人员类型 */
|
|
66
|
+
userType: IDictResponse[];
|
|
67
|
+
/** 特殊人员 */
|
|
68
|
+
fromType: IDictResponse[];
|
|
69
|
+
/** 单位类型 */
|
|
70
|
+
unitTyps: IDictResponse[];
|
|
62
71
|
}
|
|
63
72
|
|
|
64
73
|
export class TTaskMainResponse implements ITaskMainResponse {
|
|
@@ -116,6 +125,11 @@ export class TTaskMainResponse implements ITaskMainResponse {
|
|
|
116
125
|
listGZJG: IGzjgMainResponse[] = [];
|
|
117
126
|
listGZLM: IGzjgGzlmResponse[] = [];
|
|
118
127
|
gzlmLock: IGzjgGzlmResponse[] = [];
|
|
128
|
+
|
|
119
129
|
userPart: IPartResponse[] = [];
|
|
120
130
|
readPart: IPartResponse[] = [];
|
|
131
|
+
|
|
132
|
+
userType: IDictResponse[] = [];
|
|
133
|
+
fromType: IDictResponse[] = [];
|
|
134
|
+
unitTyps: IDictResponse[] = [];
|
|
121
135
|
}
|